doc icon indicating copy to clipboard operation
doc copied to clipboard

React Native 双平台差异及解决方案记录

Open xwenliang opened this issue 9 years ago • 0 comments

  1. TextInput iOS下的textAlign取值"auto", 'left', 'right', 'center', 'justify' android下的textAlign取值为'start', 'center', 'end'

  2. Image iOS下resizeMode可以写在行间属性,也可以写在style,后者覆盖前者 android下resizeMode只可以写在行间,写在style无效

      //android 
      <Image resizeMode={'stretch'}></Image>
      //ios, style中的cover会覆盖掉stretch
      <Image resizeMode={'stretch'} style={{'resizeMode': 'cover'}}></Image>
    

xwenliang avatar Feb 25 '16 10:02 xwenliang