ReactNative: Android与iOS平台兼容处理

方法一:

创建不同的文件扩展名:
*.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);
} 

ReactNative: Android与iOS平台兼容处理

上一篇:Android毕业四年升P8,年收入超100w,他是如何做到的?


下一篇:applicationContext-dao.xml 配置错误