doc
doc copied to clipboard
React Native 双平台差异及解决方案记录
-
TextInput iOS下的textAlign取值"auto", 'left', 'right', 'center', 'justify' android下的textAlign取值为'start', 'center', 'end'
-
Image iOS下resizeMode可以写在行间属性,也可以写在style,后者覆盖前者 android下resizeMode只可以写在行间,写在style无效
//android <Image resizeMode={'stretch'}></Image> //ios, style中的cover会覆盖掉stretch <Image resizeMode={'stretch'} style={{'resizeMode': 'cover'}}></Image>