react-native-screens
Version:
Native navigation primitives for your React Native app.
9 lines (8 loc) • 338 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.isIOS26OrHigher = void 0;
var _reactNative = require("react-native");
const isIOS26OrHigher = exports.isIOS26OrHigher = _reactNative.Platform.OS === 'ios' && parseInt(_reactNative.Platform.Version, 10) >= 26;
//# sourceMappingURL=PlatformUtils.js.map