Answers for "tab bar flutter example"

1

tabs flutter example

DefaultTabController(
  length: 3,
  child: Scaffold(
    appBar: AppBar(
      bottom: TabBar(
        tabs: [
          Tab(icon: Icon(Icons.directions_car)),
          Tab(icon: Icon(Icons.directions_transit)),
          Tab(icon: Icon(Icons.directions_bike)),
        ],
      ),
    ),
  ),
);
Posted by: Guest on June-20-2020
2

flutter tabbar

An example of Flutter Tabbar implementation is given here:
https://blog.logrocket.com/flutter-tabbar-a-complete-tutorial-with-examples/
Posted by: Guest on August-06-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language