Style the BottomBar Native

0
Hello, I would like to adjust the height and width of the bottom bar in native, and also adjust the height and width of the navigation icons found in there.  Can someone help me with this?
asked
1 answers
0

Hey Carter,

The easiest way to accomplish that is by adding something like the code below on your main.js within the base styling of your app (see screenshot).

Hope that helps.

Kind regards,
Manos
 

export const navigationStyle = {

    bottomBar: {

        container: {

            height: 60,

        },

        label: {

            fontSize: 18,

        },

        selectedLabel: {

            fontSize: 18,

        },

        icon: {

            size: 25          

        },

        selectedIcon: {

            size: 25    

        }

    },

};



 

 

 

answered