gpt4 book ai didi

ios - react native : "setBackgroundColor is only available on android" warning on iOS

转载 作者:行者123 更新时间:2023-11-28 23:58:47 24 4
gpt4 key购买 nike

像这样:

enter image description here如何消除这个警告?

最佳答案

如警告所述,setBackgroundColor 样式仅适用于 Android 版本。

您可以通过使用以下代码段指定仅适用于 Android 版本的样式来解决此警告。

import { Platform } from 'react-native' // on top of the file

style={{ setBackgroundColor : Platform.OS === 'android' ? 'blue' : null }} // style of the component

如果您希望禁用所有黄色警告。在导入之后和类初始化之前,将下面的代码片段放在 app.js 中。

//Disable warnings in both Android and IOS
console.disableYellowBox = true;

关于ios - react native : "setBackgroundColor is only available on android" warning on iOS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50269455/

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