Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I create Vertical tabBar in Flutter?

Tags:

flutter

How do I create Vertical tabBar in Flutter? Unlike TabBar where tabs are displayed in a horizontal row, I want to place them vertically in a Column. see this example

like image 387
Watery Desert Avatar asked Sep 18 '25 04:09

Watery Desert


2 Answers

For your use case, it would be easier to use NavigationRail instead of trying to rotate everything.

like image 123
Ashutosh Singh Avatar answered Sep 19 '25 21:09

Ashutosh Singh


The solution was simple. Here what I did. I wrapped the TabBar in a RotatedBox after decorating & styling it. And finally, wrapped everything inside PreferredSize and done.

Update on 30 Oct 2021: Use navigation Rail instead or something else from pub.dev.

like image 35
Watery Desert Avatar answered Sep 19 '25 20:09

Watery Desert