Merge remote-tracking branch 'refs/remotes/origin/main'
This commit is contained in:
@@ -41,8 +41,8 @@ class _SplashPageState extends State<SplashPage> {
|
|||||||
if (DbHelper.currentUser == null) {
|
if (DbHelper.currentUser == null) {
|
||||||
return const LoginPage();
|
return const LoginPage();
|
||||||
}
|
}
|
||||||
return const Scaffold(
|
return Scaffold(
|
||||||
body: Column(
|
body: const Column(
|
||||||
children: [
|
children: [
|
||||||
Text('Logged in!'),
|
Text('Logged in!'),
|
||||||
TextButton(
|
TextButton(
|
||||||
@@ -51,6 +51,18 @@ class _SplashPageState extends State<SplashPage> {
|
|||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
bottomNavigationBar: BottomNavigationBar(
|
||||||
|
items: const <BottomNavigationBarItem>[
|
||||||
|
BottomNavigationBarItem(
|
||||||
|
icon: Icon(Icons.settings),
|
||||||
|
label: 'Settings',
|
||||||
|
),
|
||||||
|
BottomNavigationBarItem(
|
||||||
|
icon: Icon(Icons.home),
|
||||||
|
label: 'Home',
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user