diff --git a/lib/HomePage.dart b/lib/HomePage.dart index 1e75ecd..0d06d27 100644 --- a/lib/HomePage.dart +++ b/lib/HomePage.dart @@ -12,10 +12,19 @@ class HomePage extends StatelessWidget { child: Scaffold( bottomNavigationBar: BottomAppBar( color: Theme.of(context).colorScheme.inversePrimary, - child: TabBar(tabs: [ - Placeholder(), - Placeholder(), - Placeholder(), + child: const TabBar(tabs: [ + Tab( + icon: Icon(Icons.play_arrow), + text: "Listen", + ), + Tab( + icon: Icon(Icons.web_asset), + text: "Website", + ), + Tab( + icon: Icon(Icons.language), + text: "Links", + ) ]), ), ));