mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2026-02-08 15:54:26 +01:00
Change color of settings app bar
This commit is contained in:
@@ -13,7 +13,10 @@ class SettingsView extends StatelessWidget {
|
||||
return ChangeNotifierProvider(
|
||||
create: (context) => SettingsViewModel(),
|
||||
child: Scaffold(
|
||||
appBar: AppBar(title: const Text('Settings')),
|
||||
appBar: AppBar(
|
||||
backgroundColor: Colors.grey,
|
||||
foregroundColor: Colors.black,
|
||||
title: const Text('Settings')),
|
||||
body: Consumer<SettingsViewModel>(
|
||||
builder: (context, viewModel, child) {
|
||||
// A list of settings is displayed using [ListView].
|
||||
|
||||
Reference in New Issue
Block a user