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,42 @@
"use strict";
import * as React from 'react';
import { View } from 'react-native';
import { jsx as _jsx } from "react/jsx-runtime";
let Screens;
try {
Screens = require('react-native-screens');
} catch (e) {
// Ignore
}
export const MaybeScreenContainer = ({
enabled,
...rest
}) => {
if (Screens?.screensEnabled?.()) {
return /*#__PURE__*/_jsx(Screens.ScreenContainer, {
enabled: enabled,
...rest
});
}
return /*#__PURE__*/_jsx(View, {
...rest
});
};
export function MaybeScreen({
enabled,
active,
...rest
}) {
if (Screens?.screensEnabled?.()) {
return /*#__PURE__*/_jsx(Screens.Screen, {
enabled: enabled,
activityState: active,
...rest
});
}
return /*#__PURE__*/_jsx(View, {
...rest
});
}
//# sourceMappingURL=ScreenFallback.js.map