Home > front end >  how to make category screen like aliexpress?
how to make category screen like aliexpress?

Time:09-22

how to make something like this in flutter ?

enter image description here

I tried to make something like this in flutter.

but widget row didn't work for me.

CodePudding user response:

For this, you can either use Tabbar or NavigationRail. With Tabbar, wrap it in a RotatedBox will put it in vertical mode.

CodePudding user response:

As per your Image you can Used TabBar class or NavigationRail or BottomNavigationBar Widgets

NavigationRail : This Widget is the left or right of an app to navigate between a small number of views, typically between three and five. NavigationRail

TabBar: A widget that displays a horizontal row of tabs. TabBar or Working

BottomNavigationBar: A widget that's displayed at the bottom of an app BottomNavigationBar

  • Related