ReactNative: Android与iOS平台兼容处理

早过忘川 提交于 2019-11-30 10:01:55

方法一:

创建不同的文件扩展名: *.android.js *.io.js

方法二:

import { Platform } from 'react-native';

if (Platform.OS === 'android') {
     // Do something specific for Android
   } else if (Platform.OS === 'ios') {
     // Handle iOS
} 

marginTop: Platform.OS === 'ios' 10 : 0, 
paddingBottom: Platform.OS === 'android'   8 : 0

方法三:

const myStyle = Platform.select({ios:{},android:{})

const myFn = Platform.select({ios:()=>{},android:()=>{})
myFn();

方法四:

if (UIManager.setLayoutAnimationEnabledExperimental) {
       UIManager.setLayoutAnimationEnabledExperimental(true);
} 
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!