UNPKG

react-native-system-setting-update

Version:

provide some system setting APIs. Volume, brightness, wifi, location, bluetooth, airplane...

12 lines (8 loc) 179 B
/* @flow */ import { Platform } from 'react-native'; export default class Utils { static isAndroid = Platform.OS === 'android' static isIOS = Platform.OS === 'ios' }