now with 3 tabs!

This commit is contained in:
2024-09-04 19:11:46 -04:00
parent c50057c0e7
commit c2c47de6b5

View File

@@ -12,10 +12,19 @@ class HomePage extends StatelessWidget {
child: Scaffold( child: Scaffold(
bottomNavigationBar: BottomAppBar( bottomNavigationBar: BottomAppBar(
color: Theme.of(context).colorScheme.inversePrimary, color: Theme.of(context).colorScheme.inversePrimary,
child: TabBar(tabs: [ child: const TabBar(tabs: [
Placeholder(), Tab(
Placeholder(), icon: Icon(Icons.play_arrow),
Placeholder(), text: "Listen",
),
Tab(
icon: Icon(Icons.web_asset),
text: "Website",
),
Tab(
icon: Icon(Icons.language),
text: "Links",
)
]), ]),
), ),
)); ));