Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
| 12345678910 |
- 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';
- }
|