How to change the vertical space between icon and text in BottomNavigation programmatically? The only way I found is to modify dimens.xml:
<dimen name="design_bottom_navigation_height" tools:override="true">60dp</dimen>
But it's not possible to modify dimens from the code. What should I do? How to find which parameter is changing when we modify "design_bottom_navigation_height"? Thanks in advance.