Check platform on React Native
import React, { Platform } from 'react-native';
if(Platform.OS === 'android'){
//...
}
Tweet
import React, { Platform } from 'react-native';
if(Platform.OS === 'android'){
//...
}
Tweet