在我的React Native应用中,我想使用Vector Icons作为导航栏按钮。 为此,我正在使用:https://github.com/oblador/react-native-vector-icons 导航:https://reactnavigation.org/
我也设法设置了图标,但是当我点击按钮时,背景变黑,我得到了不想要的效果。 按下按钮时,有什么方法可以使背景颜色保持透明?
这是我的代码:
static navigationOptions = ({ navigation }) => {
const { params } = navigation.state
return {
headerTitle: "Blog posts",
headerRight: (
<Icon.Button name="quote-right" backgroundColor="transparent" color="black" onPress={() => params.postComment()}>
<Text style={{fontSize: 15}}></Text>
</Icon.Button>
),
headerLeft: (
<Icon.Button name="navicon" backgroundColor="transparent" color="black" onPress={() => params.postComment()}>
<Text style={{fontSize: 15}}></Text>
</Icon.Button>
),
};
};
这就是我得到的:
答案 0 :(得分:3)
您要寻找的道具是underlayColor
,这是您应该设置为transparent
的道具。
<Icon.Button
name="quote-right"
backgroundColor="transparent"
underlayColor="transparent" // This one
color="black"
onPress={() => params.postComment()}
>
<Text style={{fontSize: 15}}></Text>
</Icon.Button>