Fultter Tabs boilerplate help you quick create Flutter Tabs project in a record time. It's inspired from Ionic 2/3/4 Tabs Project. If you familiar with Ionic 2/3/4 you can feel something with the same style here.
You can customize Tab Icon and Page as you want:
appBar: AppBar(
bottom: TabBar(
tabs: [
// Change Tabs here
Tab(icon: Icon(Icons.home)),
Tab(icon: Icon(Icons.flag)),
Tab(icon: Icon(Icons.people)),
],
),
title: Text('xMobe Tabs Demo'),
),
body: TabBarView(
children: [
// Change Pages here
HomePage(),
FlutterPage(),
AboutPage(),
],
),New with Flutter?
git clone https://github.com/xmobe-com/flutter-tabs
cd flutter-tabs
flutter packages get
flutter runWant your Flutter Side Menu Boilerplate, go here.
If you like it Star it, Fork it