2020-01-29 12:30:17 +00:00
|
|
|
import Platform from '../react/Platform';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns whether or not the current environment is a mobile device.
|
|
|
|
*
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
|
|
|
export function isMobileBrowser() {
|
|
|
|
return Platform.OS === 'android' || Platform.OS === 'ios';
|
|
|
|
}
|
2020-02-25 12:41:13 +00:00
|
|
|
|
2021-02-23 07:39:20 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns whether or not the current environment is an ios mobile device.
|
|
|
|
*
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
|
|
|
export function isIosMobileBrowser() {
|
|
|
|
return Platform.OS === 'ios';
|
|
|
|
}
|