мои нижние вкладки меняют свои цвета, когда я нажимаю на tabs.i я устанавливаю цвет фона на 'red'
, но когда я нажимаю на другую кнопку вкладки, вся панель вкладок превращается в белый цвет.
Пожалуйста, кто-нибудь может указать мне, в чем здесь моя ошибка.
Спасибо.
Navigation.setRoot({
root: {
bottomTabs: {
options: {
bottomTabs: {
visible: true,
animate: false, // Controls whether BottomTabs visibility changes should be animated
currentTabIndex: 0,
currentTabId: "currentTabId",
testID: "bottomTabsTestID",
drawBehind: false,
backgroundColor: "red"
}
},
children: [
{
stack: {
children: [
{
component: {
name: "cardealership.myBusiness",
}
}
],
options: {
bottomTab: {
text: "Tab 1",
icon: sources[1],
testID: "FIRST_TAB_BAR_BUTTON"
}
}
}
},
{
component: {
name: "cardealership.myBusiness",
options: {
bottomTab: {
text: "Tab 2",
icon: sources[2],
testID: "SECOND_TAB_BAR_BUTTON"
}
}
}
}
]
}
}
});
img2
img1