如何将选项卡栏选项添加到代码波纹管并使用色调颜色。 我想对选项卡栏选项内的图标使用活动和非活动
import React from 'react'
import { SafeAreaView, Text } from 'react-native';
export default class Chat extends React.Component {
static navigationOptions = ({ navigation }) => {
let tabBarIcon = () => {
return <MaterialIcons
style={{ backgroundColor: 'transparent' }}
name={'chat'}
color={'#000'}
size={30}
/>
}
return { tabBarIcon }
}
render(){
return(
<SafeAreaView>
<Text>Chat</Text>
</SafeAreaView>
)
}
}
如官方网站中所述。 tabBarIcon 是一个函数,它被赋予焦点状态、色调颜色和水平参数,这是一个布尔值。
试试这个
static navigationOptions = ({ navigation }) => {
let tabBarIcon = ({ focused, horizontal, tintColor }) => {
return <MaterialIcons
style={{ backgroundColor: 'transparent' }}
name={'chat'}
color={tintColor}
size={30}
/>
}
return { tabBarIcon }
}