Skip to content

Commit 2c3b1fa

Browse files
authored
Merge pull request #2145 from get10101/chore/change-scaffold-background-color-to-light-grey
chore(app): Change background color back to grey
2 parents fbabd84 + 113361a commit 2c3b1fa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mobile/lib/common/scaffold_with_nav_bar.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class ScaffoldWithNavBar extends StatelessWidget {
2525
appBar: const PreferredSize(
2626
preferredSize: Size.fromHeight(40), child: SafeArea(child: AppBarWrapper())),
2727
bottomNavigationBar: BottomNavigationBar(
28-
backgroundColor: Colors.white,
28+
backgroundColor: const Color(0xFFFAFAFA),
2929
selectedItemColor: tenTenOnePurple,
3030
unselectedItemColor: Colors.black,
3131
items: <BottomNavigationBarItem>[

mobile/lib/main.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class _TenTenOneAppState extends State<TenTenOneApp> with WidgetsBindingObserver
7474
scaffoldMessengerKey: scaffoldMessengerKey,
7575
theme: ThemeData(
7676
primarySwatch: swatch,
77-
scaffoldBackgroundColor: Colors.white,
77+
scaffoldBackgroundColor: const Color(0xFFFAFAFA),
7878
cardTheme: const CardTheme(
7979
shape: RoundedRectangleBorder(borderRadius: BorderRadius.all(Radius.circular(12.0))),
8080
surfaceTintColor: Colors.white,

0 commit comments

Comments
 (0)