From b62fff4c66e22ec19afbdc76b38dc12a016decd6 Mon Sep 17 00:00:00 2001 From: ka_sh Date: Tue, 31 Aug 2021 16:58:00 +0530 Subject: [PATCH] Fixed a small bug Fixed a small late initialization error occuring due to typo in initialization of ```_searchDark```, ```_selectedTabDark``` and ```_unSelectedTabDark```. --- lib/styling.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/styling.dart b/lib/styling.dart index 4b0b0c2..68a5772 100644 --- a/lib/styling.dart +++ b/lib/styling.dart @@ -87,9 +87,9 @@ class AppTheme { static final TextStyle _greetingDark = _greetingLight.copyWith(color: Colors.black); - static final TextStyle _searchDark = _searchDark.copyWith(color: Colors.black); + static final TextStyle _searchDark = _searchLight.copyWith(color: Colors.black); - static final TextStyle _selectedTabDark = _selectedTabDark.copyWith(color: Colors.white); + static final TextStyle _selectedTabDark = _selectedTabLight.copyWith(color: Colors.white); - static final TextStyle _unSelectedTabDark = _selectedTabDark.copyWith(color: Colors.white70); + static final TextStyle _unSelectedTabDark = _selectedTabLight.copyWith(color: Colors.white70); }