Hanggi
Hanggi

Reputation: 715

flutter change bottomNavigationBar(TabBar) height

I just found a way to change the height of AppBar with PreferredSize().

But I still not found a way modify the height of BottomNavigationBar and TabBar. Such widgets all hard coded, is there a way can change the widget height for thinner BottomBar and TabBar.

Upvotes: 1

Views: 3946

Answers (1)

Andrii Turkovskyi
Andrii Turkovskyi

Reputation: 29468

_BottomNavigationBarState class is private, and in it's build method there is string BoxConstraints(minHeight: kBottomNavigationBarHeight + additionalBottomPadding). There is no way to change this height without customization this class

Upvotes: 3

Related Questions