so i have this flutter app, and i'm trying to hide or remove the title. I tried leaving the title as an empty string i.e. new Text("")
but that messed with the alignment of the navbar.
Desired Outcome:
What i'm getting (if i leave the title as empty string):
There are two workarounds for this problem, as this feature is not yet implemented.
Container(height: 0.0)
instead ofText("")
Update:
Just add this to your BottomNavigationBar
As of now, this feature is not implement. For a BottomNavigationBarItem, title is a required field
But you can build a new widget for this.
Try this :