diff --git a/lib/main.dart b/lib/main.dart index f581c84..27a4a4a 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -64,6 +64,7 @@ class _HomeState extends State { ), BottomNavigationBarItem( icon: _buildNotificationIcon(context), + activeIcon: Icon(Icons.notifications), title: Text('Notification'), ), BottomNavigationBarItem( @@ -76,6 +77,7 @@ class _HomeState extends State { ), BottomNavigationBarItem( icon: Icon(Icons.person_outline), + activeIcon: Icon(Icons.person), title: Text('Me'), ), ]; @@ -153,6 +155,8 @@ class _HomeState extends State { home: Scaffold( body: _buildScreen(active), bottomNavigationBar: BottomNavigationBar( + selectedItemColor: PrimerColors.blue500, + // unselectedItemColor: PrimerColors.gray500, items: _buildNavigationItems(), currentIndex: active, type: BottomNavigationBarType.fixed,