pedromassango / bottom_navy_bar

A beautiful and animated bottom navigation
https://youtu.be/jJPSKEEiN-E
Apache License 2.0
1.04k stars 219 forks source link

Letters hidden if the word is too long #96

Open agostinofiscale opened 3 years ago

agostinofiscale commented 3 years ago

Hi,

i'm trying to use this package and i have a BottomNavyBarItem with a title maybe too long. The title is "notifications", seems like it gets cutted on iPhone 11 pro.

Is there any solution to this?

Thank you!

Schermata 2021-09-07 alle 01 33 02
OAndreLuizSilva commented 3 years ago

Wrap the text inside a FittedBox

FittedBox( fit: BoxFit.scaleDown, child: Text( 'Notification', ), ),

agostinofiscale commented 3 years ago

Wrap the text inside a FittedBox

FittedBox( fit: BoxFit.scaleDown, child: Text( 'Notification', ), ),

Thank you for you response.

Sadly I'm not using this package anymore, but I hope your response will helps someone else.

UmairSaqibBhutta commented 1 year ago

Please minimize the space between the icon and the title. Currently, no parameter to decrease this space.