react native 新版本警告
react-native navigation 警告问题:
解决方案:
导入YellowBox:
import { YellowBox } from "react-native";
添加js:
YellowBox.ignoreWarnings([
"Warning: isMounted(...) is deprecated",
"Module RCTImageLoader"
]);
解决方案1:
导入createBottomTabNavigator:
import { createBottomTabNavigator } from "react-navigation";
使用:
export default createBottomTabNavigator
解决方案2:
App.js 添加:
YellowBox.ignoreWarnings([
"Method `jumpToIndex` is deprecated"
]);
这个人暂时没有 freestyle