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
Platform
I used isTablet() to detect ipad with iphone https://github.com/rebeccahughes/react-native-device-info
import { isTablet } from 'react-native-device-info'; if (isTablet()) { // try something }