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

23
node_modules/expo-router/build/toolbar/native.ios.js generated vendored Normal file
View File

@@ -0,0 +1,23 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.RouterToolbarHost = RouterToolbarHost;
exports.RouterToolbarItem = RouterToolbarItem;
const expo_1 = require("expo");
const RouterToolbarHostView = (0, expo_1.requireNativeView)('ExpoRouterToolbarModule', 'RouterToolbarHostView');
function RouterToolbarHost(props) {
return (<RouterToolbarHostView {...props} style={{
position: 'absolute',
top: 0,
left: 0,
width: 1,
height: 1,
backgroundColor: 'transparent',
}}/>);
}
const RouterToolbarItemView = (0, expo_1.requireNativeView)('ExpoRouterToolbarModule', 'RouterToolbarItemView');
function RouterToolbarItem(props) {
// Needed to pass shared object ID to native side
const imageObjectId = props.image?.__expo_shared_object_id__;
return <RouterToolbarItemView {...props} image={imageObjectId}/>;
}
//# sourceMappingURL=native.ios.js.map