I would like to change the backbround color, the tintColor of the icons and so on.
I can see that RNNBottomTabsOptions does not have any style prop. But is there another way?
Navigation.events().onAppLaunched(() => {
Navigation.setRoot({
bottomTabs: {
children: [
{
stack: {
children: [
{
component: {
name: 'Feed',
options: {
bottomTab: {
icon: feed,
},
},
},
},
],
},
},
{
stack: {
children: [
{
component: {
name: 'Explore',
options: {
bottomTab: {
icon: explore,
},
},
},
},
],
},
},
{
stack: {
children: [
{
component: {
name: 'Notifications',
options: {
bottomTab: {
icon: notifications,
},
},
},
},
],
},
},
{
stack: {
children: [
{
component: {
name: 'Profile',
options: {
bottomTab: {
icon: profile,
},
},
},
},
],
},
},
],
},
})
})
}
Hey there,
A lot of the styling features are implemented as of yet in v2.
how we can change icon color?