diff --git a/lib/pages/splash_page.dart b/lib/pages/splash_page.dart index 43a7bfb..b7da741 100644 --- a/lib/pages/splash_page.dart +++ b/lib/pages/splash_page.dart @@ -41,8 +41,8 @@ class _SplashPageState extends State { if (DbHelper.currentUser == null) { return const LoginPage(); } - return const Scaffold( - body: Column( + return Scaffold( + body: const Column( children: [ Text('Logged in!'), TextButton( @@ -51,6 +51,18 @@ class _SplashPageState extends State { ), ], ), + bottomNavigationBar: BottomNavigationBar( + items: const [ + BottomNavigationBarItem( + icon: Icon(Icons.settings), + label: 'Settings', + ), + BottomNavigationBarItem( + icon: Icon(Icons.home), + label: 'Home', + ), + ], + ), ); } }