Watery Desert
Watery Desert

Reputation: 414

How do I create Vertical tabBar in 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

Upvotes: 4

Views: 13590

Answers (3)

Watery Desert
Watery Desert

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

Ashutosh Singh
Ashutosh Singh

Reputation: 1277

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

Upvotes: 7

skjagini
skjagini

Reputation: 3217

Check out Drawer example in flutter gallery, they have the use case defined, and it provides many samples

Upvotes: 0

Related Questions