first commit

This commit is contained in:
2026-03-10 16:18:05 +00:00
commit 11f9c069b5
31635 changed files with 3187747 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
import React from 'react';
import { Platform, StyleSheet, View, useWindowDimensions } from 'react-native';
// Native components
import FullWindowOverlayNativeComponent from '../fabric/FullWindowOverlayNativeComponent';
const NativeFullWindowOverlay = FullWindowOverlayNativeComponent;
function FullWindowOverlay(props) {
const {
width,
height
} = useWindowDimensions();
if (Platform.OS !== 'ios') {
console.warn('Using FullWindowOverlay is only valid on iOS devices.');
return /*#__PURE__*/React.createElement(View, props);
}
return /*#__PURE__*/React.createElement(NativeFullWindowOverlay, {
style: [StyleSheet.absoluteFill, {
width,
height
}],
accessibilityContainerViewIsModal: props.unstable_accessibilityContainerViewIsModal
}, props.children);
}
export default FullWindowOverlay;
//# sourceMappingURL=FullWindowOverlay.js.map