gpt4 book ai didi

react-native - 为什么 React Native Navigation v2 图标未在 iOS 中显示?

转载 作者:行者123 更新时间:2023-12-04 05:23:03 33 4
gpt4 key购买 nike

我正在使用 react-native-navigation 的新 V2,当我使用后退图标和右上角的栏按钮图标时,我在 android 设备上无法正常工作,但是使用 IOS 我没有得到图像,只有蓝色圆圈。

enter image description here

这些是使用生成顶部栏图标的代码

//right button

static options(passProps) {
return {
topBar: {
leftButtons: [

],
rightButtons: [
{
id: 'settings',
icon: require('../assets/images/symbols/settings.png'),
disableIconTint: true
}
],
}
};
}

我是 native react 的新手,有人可以发现这个问题可以指导我,
谢谢。

最佳答案

我也遇到了这个问题,由于文档过时,这个问题被他们的 GitHub 问题很好地掩盖了。

我设法通过添加 (left|right)Buttoncolor 来修复它在 topBar 对象内。例子:

{
topBar: {
leftButtonColor: 'white', // here to able change the color
rightButtonColor: 'white', // here to able change the color

backButton: {
color: 'white' // for back button
},

leftButtons: [], // your buttons object
rightButtons: [] // your buttons object
}
}

更多引用,你可以看看这个 github issue .

关于react-native - 为什么 React Native Navigation v2 图标未在 iOS 中显示?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53538923/

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