react-native的一些配置问题
在使用react-navigation时,用react-native-screens一直报错:
Task :react-native-screens:compileDebugJavaWithJavac FAILED
RN的版本是0.61.5,需要降级react-native-screens到2.6.0版本才能用。
另外用VSCode时,新的RN项目会报一系列的Format错误,一堆波浪线看的很闹心,编辑eslintrc.js:
module.exports = {
root: true,
extends: '@react-native-community',
rules: {
'prettier/prettier': 0,
},
};
即可。