diff --git a/lib/HomePage.dart b/lib/HomePage.dart index 21e7e28..1e75ecd 100644 --- a/lib/HomePage.dart +++ b/lib/HomePage.dart @@ -7,10 +7,17 @@ class HomePage extends StatelessWidget { @override Widget build(BuildContext context) { - return Scaffold( - bottomNavigationBar: BottomAppBar( - color: Theme.of(context).colorScheme.inversePrimary, - ), - ); + return DefaultTabController( + length: 3, + child: Scaffold( + bottomNavigationBar: BottomAppBar( + color: Theme.of(context).colorScheme.inversePrimary, + child: TabBar(tabs: [ + Placeholder(), + Placeholder(), + Placeholder(), + ]), + ), + )); } }