React Native: How to Determine if Device is iPhone or iPad

后端 未结 10 845
花落未央
花落未央 2021-02-01 16:32

I know with React Native that we have the ability to determine whether iOS or Android is being run using the Platform module, but how can we determine what device i

10条回答
  •  情歌与酒
    2021-02-01 17:13

    As of 9.02.2018 there is also

    import { Platform } from 'react-native'
    Platform.isPad // boolean
    

    Mind that (as of now) it has no android counterpart.

    • IOS https://github.com/facebook/react-native/blob/master/Libraries/Utilities/Platform.ios.js#L23
    • Android https://github.com/facebook/react-native/blob/master/Libraries/Utilities/Platform.android.js (no isPad!)

提交回复
热议问题