There was an error while loading. Please reload this page.
1 parent b035e6e commit 34572cfCopy full SHA for 34572cf
lib/Home/ContactList.dart
@@ -32,7 +32,7 @@ class _ContactListState extends State<ContactList> {
32
return Container(
33
child: Center(
34
child: SpinKitDoubleBounce(
35
- color: Theme.of(context).primaryColorDark,
+ color: Theme.of(context).primaryColor,
36
size: 50.0,
37
)
38
lib/Home/HomePage.dart
@@ -74,6 +74,7 @@ class _HomepageState extends State<Homepage> {
74
75
76
return Scaffold(
77
+ backgroundColor: Theme.of(context).primaryColorLight,
78
body: new WillPopScope(
79
onWillPop: () async => false,
80
child: FlatPageWrapper(
@@ -105,6 +106,9 @@ class _HomepageState extends State<Homepage> {
105
106
),
107
108
bottomNavigationBar: BottomNavigationBar(
109
110
+ selectedItemColor: Theme.of(context).primaryColor,
111
+ unselectedItemColor: Theme.of(context).primaryColorDark,
112
currentIndex: index,
113
type: BottomNavigationBarType.fixed,
114
iconSize: 30,
lib/main.dart
@@ -21,7 +21,7 @@ class MyApp extends StatelessWidget {
21
textTheme: GoogleFonts.nunitoSansTextTheme(
22
Theme.of(context).textTheme,
23
24
- primaryColor: Color(0xff435de6),
+ primaryColor: Color(0xff0da773),
25
accentColor: Color(0xffF56D58),
26
primaryColorDark: Color(0xff262833),
27
primaryColorLight: Color(0xffFCF9F5),
@@ -30,7 +30,7 @@ class MyApp extends StatelessWidget {
30
31
primaryColorDark: Color(0xffFFFFFF),
primaryColorLight: Color(0xff000000),
@@ -43,7 +43,7 @@ class MyApp extends StatelessWidget {
43
44
45
46
47
48
49
0 commit comments