Checks if the current environment is React Native.
Tests for the presence of navigator.product === 'ReactNative'.
true if running in React Native environment
if (isReactNative()) { // Use React Native specific APIs Alert.alert('Hello');} Copy
if (isReactNative()) { // Use React Native specific APIs Alert.alert('Hello');}
Checks if the current environment is React Native.
Tests for the presence of navigator.product === 'ReactNative'.