gpt4 book ai didi

react-native - React Native - 导航栏中的矢量图标

转载 作者:行者123 更新时间:2023-12-04 04:07:43 24 4
gpt4 key购买 nike

在我的 React Native 应用程序中,我想使用矢量图标作为导航栏按钮。
为此,我正在使用: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>
),
};
};

这就是我得到的:

enter image description here

最佳答案

您要找的 Prop 是 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>

关于react-native - React Native - 导航栏中的矢量图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53122708/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com