Answers for "how to check if expo app is running on the web"

0

how to check if expo app is running on the web

import { Platform } from 'react-native';

if (Platform.OS === 'ios') {
  // do something for ios
} else if (Platform.OS === 'android') {
  // other thing for android
} else if (Platform.OS === 'web') {
  // it's on web!
} else {
  // you probably won't end up here unless you support another platform!
}
Posted by: Guest on April-25-2022

Code answers related to "how to check if expo app is running on the web"

Code answers related to "Javascript"

Browse Popular Code Answers by Language