Home > Blockchain >  How to create a centered and equal sized tabs, Tab Bar in Flutter
How to create a centered and equal sized tabs, Tab Bar in Flutter

Time:02-03

I want to create a Tab bar in which the size of the tabs are independent of the size of the screen, using the default tab bar creates a very long tab when running on a desktop, i want all the tabs to be the same size and be centered as if it were a Row

CodePudding user response:

  isScrollable: false,

TabBar(
              isScrollable: false,
              labelPadding: EdgeInsets.all(8.0),
              labelStyle:
                  TextStyle(fontSize: 16.0, fontWeight: FontWeight.w500),
              labelColor: Colors.black,
              controller: _controller,
)

make : isScrollable : false, now you will have the equal size tabs

  •  Tags:  
  • Related