Home > Net >  flutter tabbar Margin/padding between label
flutter tabbar Margin/padding between label

Time:12-15

im tired with tabbar and didn't find the answer. I have 3 tabbar and i want to place the label to left like categories how ?

tabbar i want image

CodePudding user response:

I'm able to find the solution to this.

Just by adding isScrollable: true parameter to TabBar() all tabs shrink to one side.

Without setting isScrollable: true all tabs items were taking all the space they have in the given widget.

  • Related