📜  如何使用 platform.select - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:21.745000             🧑  作者: Mango

代码示例1
import {Platform} from 'react-native';
    st styles = StyleSheet.create({
      container: {
        flex: 1,
        ...Platform.select({
          ios: {
            backgroundColor: 'red',
          },
          android: {
            backgroundColor: 'blue',
          },
        }),
      },
    });