From c2c47de6b533371e8819929f63f12673b9048472 Mon Sep 17 00:00:00 2001 From: David Senk Date: Wed, 4 Sep 2024 19:11:46 -0400 Subject: [PATCH] now with 3 tabs! --- lib/HomePage.dart | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) 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", + ) ]), ), ));