0
我想改變我的活動標籤標題顏色,我嘗試過使用tabBarOptions,但它只是不會工作,我做錯了什麼? 這是我的代碼:無法更改標籤欄標籤的顏色
Home:{
screen: TabNavigator({
Home: {
screen: HomeScreen,
navigationOptions: ({ navigation }) => ({
title: 'Home',
tabBarIcon: ({ tintColor, focused }) => (
<Ionicons
name={focused ? 'ios-home' : 'ios-home-outline'}
size={26}
style={{ color: focused ? `${tabBarColor}` : tintColor}}
/>
),
header: null,
}),
},
Profile: {
screen: ProfileScreen,
navigationOptions: ({ navigation }) => ({
title: 'Profile',
tabBarIcon: ({ tintColor, focused }) => (
<Ionicons
name={focused ? 'ios-people' : 'ios-people-outline'}
size={26}
style={{ color: focused ? `${tabBarColor}` : tintColor }}
/>
),
header: null,
}),
},
}),
tabBarOptions:{
activeTintColor: `${tabBarColor}`,
}
}
我讀我的文檔和搜索的例子,但找不到任何爲我工作。 這就像應用程序只是忽略tabBarOptions。
在此先感謝!
首先,謝謝:D,我應該在哪裏添加它?你在哪裏找到這個文檔?我現在再次看着文檔,在那裏看不到它。 –
我已經添加了參考現在檢查 –
謝謝,但我仍然可以在那裏看到tabBarOptions解決方案,你確定它改變了嗎?我也不知道應該在哪裏添加解決方案。 –