I have changed my icon's size but the title isn't fitting within the icon and is looking like this. The icon size is 40dp.
Here is my code:
<android.support.design.widget.BottomNavigationView
android:id="@+id/navigationBar"
android:layout_gravity="fill"
android:layout_width="match_parent"
android:layout_height="100dp"
app:itemIconTint="@drawable/bottom_navigation_selection"
app:itemTextColor="@drawable/bottom_navigation_selection"
app:menu="@menu/bottom_navigation"
android:background="@color/appBar"/>
and here is my dimens.xml:
<dimen name="design_bottom_navigation_icon_size" tools:override="true">50dp</dimen>
<dimen name="design_bottom_navigation_item_max_width" tools:override="true">600dp</dimen>
<dimen name="design_bottom_navigation_active_item_max_width" tools:override="true">600dp</dimen>
I hope you guys can help me find a solution. Thanks.