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
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.