diff --git a/frontend/lib/views/settings/settings_view.dart b/frontend/lib/views/settings/settings_view.dart index 0529d925..3dafe4e6 100644 --- a/frontend/lib/views/settings/settings_view.dart +++ b/frontend/lib/views/settings/settings_view.dart @@ -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( builder: (context, viewModel, child) { // A list of settings is displayed using [ListView].