diff --git a/lib/widgets/bottom_navigation/bottom_navigation_item.dart b/lib/widgets/bottom_navigation/bottom_navigation_item.dart index b1c565f6..ba35f3c6 100644 --- a/lib/widgets/bottom_navigation/bottom_navigation_item.dart +++ b/lib/widgets/bottom_navigation/bottom_navigation_item.dart @@ -54,16 +54,19 @@ class BottomNavigationItem extends StatelessWidget { size: 22.0), ), SizedBox( - height: 5, + height: 2, ), Texts( name, textAlign: TextAlign.center, color: currentIndex == index ? Theme.of(context).primaryColor - : Theme.of(context).dividerColor, + : Colors.grey, fontSize: 11, ), + SizedBox( + height: 7, + ), ], ) : authenticatedUserObject.isLogin @@ -103,16 +106,19 @@ class BottomNavigationItem extends StatelessWidget { size: 22.0), ), SizedBox( - height: 5, + height: 2, ), Texts( name, textAlign: TextAlign.center, color: currentIndex == index ? Theme.of(context).primaryColor - : Theme.of(context).dividerColor, + : Colors.grey, fontSize: 11, ), + SizedBox( + height: 7, + ), ], ), ], @@ -133,16 +139,19 @@ class BottomNavigationItem extends StatelessWidget { size: 22.0), ), SizedBox( - height: 5, + height: 2, ), Texts( name, textAlign: TextAlign.center, color: currentIndex == index ? Theme.of(context).primaryColor - : Theme.of(context).dividerColor, + : Colors.grey, fontSize: 11, ), + SizedBox( + height: 7, + ), ], ), ),