Android 报错 react native syntaxError:Attempted to redefine property "width"(line 72745)
Android 报错 react native syntaxError:Attempted to redefine property "fontSize"(line 72745)
今天项目一直报这样的错误,好茫然,不知道错误出现在哪里?
其实是我们一个控件中width属性定义了多次,或者是fontsize定义了多次,类似下面这样
innerContainer: { width:300, backgroundColor: '#f6f6f6', borderRadius: 8, width: 270, height: 147, position: 'relative', },
ios运行时可以的,但是android 出错;
解决方法:找到重复定义的属性,删除一个就可以了;