我正在開發(fā)一個(gè)應(yīng)用程序,它在底部選項(xiàng)卡導(dǎo)航器中有三個(gè)屏幕。當(dāng)我從一個(gè)屏幕轉(zhuǎn)到另一個(gè)屏幕時(shí),我能夠更改標(biāo)簽顏色,但是,我也無(wú)法更改圖標(biāo)的顏色。這是到目前為止的樣子的示例。這是我控制它的 App.js 代碼。我非常感謝對(duì)此的任何幫助或指導(dǎo)。預(yù)先感謝您的任何幫助!應(yīng)用程序.js:function MainTabNavigator() { return ( <Tab.Navigator tabBarOptions={{ activeTintColor: '#e64951', }} > <Tab.Screen options={{ headerShown: false, tabBarIcon: ({ tintColor }) => ( <Entypo name="home" size={30} color={tintColor} /> ) }} name="home" component={Home} /> <Tab.Screen options={{ headerShown: false, tabBarIcon: () => ( <FontAwesome5 name="plus" size={30} color="black" /> ) }} name="Add Friends" component={AddFriends} /> <Tab.Screen options={{ headerShown: false, tabBarIcon: ({ tintColor }) => ( <FontAwesome name="user" size={30} color={tintColor} /> ) }} name="Profile" component={Profile} /> </Tab.Navigator> )}
在反應(yīng)本機(jī)底部選項(xiàng)卡導(dǎo)航器中更改屏幕時(shí)如何更改圖標(biāo)和文本的顏色?
暮色呼如
2024-01-18 09:49:12