limcheekin / fluwix

Fluwix: A Flutter showcase platform on the mobile apps and web.
https://fluwix.com
MIT License
21 stars 8 forks source link

For Wide Layout, add icon to tabs #34

Open limcheekin opened 3 years ago

limcheekin commented 3 years ago

https://o7planning.org/12865/flutter-tabbar

TabBar(
  tabs: [
    Row (children: [Icon(Icons.directions_car), SizedBox(width:5), Text("Car")]),
    Row (children: [Icon(Icons.directions_transit), SizedBox(width:5), Text("Transit")]),
    Row (children: [Icon(Icons.directions_bike), SizedBox(width:5), Text("Bike")]),
  ],
  labelColor: Colors.white,
  unselectedLabelColor: Colors.cyanAccent,
);