while there's still improvements to be made, time to move onto the backend.

This commit is contained in:
Joshua
2024-07-11 15:24:38 -06:00
parent cbd040f57b
commit dfcddd11d4
7 changed files with 98 additions and 69 deletions
+3 -4
View File
@@ -35,8 +35,6 @@ BottomNavigationBarItem _buildNavigationItem(int index) {
return BottomNavigationBarItem(
icon: Icon(iconData),
label: label,
backgroundColor: AppTheme.lightest,
);
}
@@ -67,11 +65,12 @@ class MyApp extends ConsumerWidget {
return MaterialApp(
title: 'One AI',
home: Scaffold(
backgroundColor: AppTheme.medium,
backgroundColor: AppTheme.dark,
body: _pages[selectedIndex],
bottomNavigationBar: BottomNavigationBar(
backgroundColor: AppTheme.darkest,
selectedItemColor: AppTheme.lightest,
selectedItemColor: AppTheme.accent2,
unselectedItemColor: AppTheme.light,
showUnselectedLabels: false,
showSelectedLabels: false,
iconSize: 30,