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

40
node_modules/expo-router/build/ui/TabList.js generated vendored Normal file
View File

@@ -0,0 +1,40 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.TabList = TabList;
exports.isTabList = isTabList;
const react_native_1 = require("react-native");
const common_1 = require("./common");
/**
* Wrapper component for `TabTriggers`. `TabTriggers` within the `TabList` define the tabs.
*
* @example
* ```tsx
* <Tabs>
* <TabSlot />
* <TabList>
* <TabTrigger name="home" href="/" />
* </TabList>
* </Tabs>
* ```
*/
function TabList({ asChild, style, ...props }) {
const Comp = asChild ? common_1.ViewSlot : react_native_1.View;
return <Comp style={[styles.tabList, style]} {...props}/>;
}
/**
* @hidden
*/
function isTabList(child) {
return child.type === TabList;
}
const styles = react_native_1.StyleSheet.create({
tabList: {
flexDirection: 'row',
justifyContent: 'space-between',
},
tabTrigger: {
flexDirection: 'row',
justifyContent: 'space-between',
},
});
//# sourceMappingURL=TabList.js.map