Reputation: 414
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
Upvotes: 4
Views: 13590
Reputation: 414
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.
Upvotes: 4
Reputation: 1277
For your use case, it would be easier to use NavigationRail instead of trying to rotate everything.
Upvotes: 7
Reputation: 3217
Check out Drawer example in flutter gallery, they have the use case defined, and it provides many samples
Upvotes: 0