mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 21:31:02 +00:00
1 line
57 KiB
Plaintext
1 line
57 KiB
Plaintext
{"dependencies":[{"name":"@babel/runtime/helpers/interopRequireDefault","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"kslwqCIsh6ew+I1KeA1rlVRjsAk=","exportNames":["*"]}},{"name":"@react-navigation/elements","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":3,"column":0,"index":15},"end":{"line":3,"column":105,"index":120}}],"key":"LmqW7jh+SpCzQZMkzh+Awcuawt0=","exportNames":["*"]}},{"name":"@react-navigation/native","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":4,"column":0,"index":121},"end":{"line":4,"column":137,"index":258}}],"key":"yKhyWCfwa1gXEwEbMKnWHykYbZ4=","exportNames":["*"]}},{"name":"react","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":5,"column":0,"index":259},"end":{"line":5,"column":26,"index":285}}],"key":"RtGiGa+/H7VrI7GDQDLhO1UbpU8=","exportNames":["*"]}},{"name":"react-native-web/dist/exports/Animated","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"dNPzxVfn0yBoRxvhD+vE+lN7k4Q=","exportNames":["*"]}},{"name":"react-native-web/dist/exports/Platform","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"dV3bI3NOD8bfMzaIniMaFGy/nn8=","exportNames":["*"]}},{"name":"react-native-web/dist/exports/StyleSheet","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"MK7+k1V+KnvCVW7Kj2k/ydtjmVU=","exportNames":["*"]}},{"name":"react-native-web/dist/exports/View","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"4kYBDC6LJJXoH7P9rWDi3vkLVB0=","exportNames":["*"]}},{"name":"../utils/BottomTabBarHeightCallbackContext.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":7,"column":0,"index":355},"end":{"line":7,"column":98,"index":453}}],"key":"ugELg4I63IAZwlqh6l59tEtqTlI=","exportNames":["*"]}},{"name":"../utils/useIsKeyboardShown.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":8,"column":0,"index":454},"end":{"line":8,"column":68,"index":522}}],"key":"mhLM44FQn4R6yOS65twI8hSRhu8=","exportNames":["*"]}},{"name":"./BottomTabItem.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":9,"column":0,"index":523},"end":{"line":9,"column":51,"index":574}}],"key":"ocsmW2cewFboIoyqEEjH8emGUpI=","exportNames":["*"]}},{"name":"react/jsx-runtime","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":10,"column":0,"index":575},"end":{"line":10,"column":63,"index":638}}],"key":"rKAWVuQOSSDHxC6IWcmkeWszaWg=","exportNames":["*"]}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n var _interopRequireDefault = require(_dependencyMap[0], \"@babel/runtime/helpers/interopRequireDefault\");\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.BottomTabBar = BottomTabBar;\n exports.getTabBarHeight = void 0;\n var _elements = require(_dependencyMap[1], \"@react-navigation/elements\");\n var _native = require(_dependencyMap[2], \"@react-navigation/native\");\n var _react = _interopRequireDefault(require(_dependencyMap[3], \"react\"));\n var _Animated = _interopRequireDefault(require(_dependencyMap[4], \"react-native-web/dist/exports/Animated\"));\n var _Platform = _interopRequireDefault(require(_dependencyMap[5], \"react-native-web/dist/exports/Platform\"));\n var _StyleSheet = _interopRequireDefault(require(_dependencyMap[6], \"react-native-web/dist/exports/StyleSheet\"));\n var _View = _interopRequireDefault(require(_dependencyMap[7], \"react-native-web/dist/exports/View\"));\n var _BottomTabBarHeightCallbackContext = require(_dependencyMap[8], \"../utils/BottomTabBarHeightCallbackContext.js\");\n var _useIsKeyboardShown = require(_dependencyMap[9], \"../utils/useIsKeyboardShown.js\");\n var _BottomTabItem = require(_dependencyMap[10], \"./BottomTabItem.js\");\n var _jsxRuntime = require(_dependencyMap[11], \"react/jsx-runtime\");\n const TABBAR_HEIGHT_UIKIT = 49;\n const TABBAR_HEIGHT_UIKIT_COMPACT = 32;\n const SPACING_UIKIT = 15;\n const SPACING_MATERIAL = 12;\n const DEFAULT_MAX_TAB_ITEM_WIDTH = 125;\n const useNativeDriver = _Platform.default.OS !== 'web';\n const shouldUseHorizontalLabels = ({\n state,\n descriptors,\n dimensions\n }) => {\n const {\n tabBarLabelPosition\n } = descriptors[state.routes[state.index].key].options;\n if (tabBarLabelPosition) {\n switch (tabBarLabelPosition) {\n case 'beside-icon':\n return true;\n case 'below-icon':\n return false;\n }\n }\n if (dimensions.width >= 768) {\n // Screen size matches a tablet\n const maxTabWidth = state.routes.reduce((acc, route) => {\n const {\n tabBarItemStyle\n } = descriptors[route.key].options;\n const flattenedStyle = _StyleSheet.default.flatten(tabBarItemStyle);\n if (flattenedStyle) {\n if (typeof flattenedStyle.width === 'number') {\n return acc + flattenedStyle.width;\n } else if (typeof flattenedStyle.maxWidth === 'number') {\n return acc + flattenedStyle.maxWidth;\n }\n }\n return acc + DEFAULT_MAX_TAB_ITEM_WIDTH;\n }, 0);\n return maxTabWidth <= dimensions.width;\n } else {\n return dimensions.width > dimensions.height;\n }\n };\n const isCompact = ({\n state,\n descriptors,\n dimensions\n }) => {\n const {\n tabBarPosition,\n tabBarVariant\n } = descriptors[state.routes[state.index].key].options;\n if (tabBarPosition === 'left' || tabBarPosition === 'right' || tabBarVariant === 'material') {\n return false;\n }\n const isLandscape = dimensions.width > dimensions.height;\n const horizontalLabels = shouldUseHorizontalLabels({\n state,\n descriptors,\n dimensions\n });\n if (_Platform.default.OS === 'ios' && !_Platform.default.isPad && isLandscape && horizontalLabels) {\n return true;\n }\n return false;\n };\n const getTabBarHeight = ({\n state,\n descriptors,\n dimensions,\n insets,\n style\n }) => {\n const {\n tabBarPosition\n } = descriptors[state.routes[state.index].key].options;\n const flattenedStyle = _StyleSheet.default.flatten(style);\n const customHeight = flattenedStyle && 'height' in flattenedStyle ? flattenedStyle.height : undefined;\n if (typeof customHeight === 'number') {\n return customHeight;\n }\n const inset = insets[tabBarPosition === 'top' ? 'top' : 'bottom'];\n if (isCompact({\n state,\n descriptors,\n dimensions\n })) {\n return TABBAR_HEIGHT_UIKIT_COMPACT + inset;\n }\n return TABBAR_HEIGHT_UIKIT + inset;\n };\n exports.getTabBarHeight = getTabBarHeight;\n function BottomTabBar({\n state,\n navigation,\n descriptors,\n insets,\n style\n }) {\n const {\n colors\n } = (0, _native.useTheme)();\n const {\n direction\n } = (0, _native.useLocale)();\n const {\n buildHref\n } = (0, _native.useLinkBuilder)();\n const focusedRoute = state.routes[state.index];\n const focusedDescriptor = descriptors[focusedRoute.key];\n const focusedOptions = focusedDescriptor.options;\n const {\n tabBarPosition = 'bottom',\n tabBarShowLabel,\n tabBarLabelPosition,\n tabBarHideOnKeyboard = false,\n tabBarVisibilityAnimationConfig,\n tabBarVariant = 'uikit',\n tabBarStyle,\n tabBarBackground,\n tabBarActiveTintColor,\n tabBarInactiveTintColor,\n tabBarActiveBackgroundColor,\n tabBarInactiveBackgroundColor\n } = focusedOptions;\n if (tabBarVariant === 'material' && tabBarPosition !== 'left' && tabBarPosition !== 'right') {\n throw new Error(\"The 'material' variant for tab bar is only supported when 'tabBarPosition' is set to 'left' or 'right'.\");\n }\n if (tabBarLabelPosition === 'below-icon' && tabBarVariant === 'uikit' && (tabBarPosition === 'left' || tabBarPosition === 'right')) {\n throw new Error(\"The 'below-icon' label position for tab bar is only supported when 'tabBarPosition' is set to 'top' or 'bottom' when using the 'uikit' variant.\");\n }\n const isKeyboardShown = (0, _useIsKeyboardShown.useIsKeyboardShown)();\n const onHeightChange = _react.default.useContext(_BottomTabBarHeightCallbackContext.BottomTabBarHeightCallbackContext);\n const shouldShowTabBar = !(tabBarHideOnKeyboard && isKeyboardShown);\n const visibilityAnimationConfigRef = _react.default.useRef(tabBarVisibilityAnimationConfig);\n _react.default.useEffect(() => {\n visibilityAnimationConfigRef.current = tabBarVisibilityAnimationConfig;\n });\n const [isTabBarHidden, setIsTabBarHidden] = _react.default.useState(!shouldShowTabBar);\n const [visible] = _react.default.useState(() => new _Animated.default.Value(shouldShowTabBar ? 1 : 0));\n _react.default.useEffect(() => {\n const visibilityAnimationConfig = visibilityAnimationConfigRef.current;\n if (shouldShowTabBar) {\n const animation = visibilityAnimationConfig?.show?.animation === 'spring' ? _Animated.default.spring : _Animated.default.timing;\n animation(visible, {\n toValue: 1,\n useNativeDriver,\n duration: 250,\n ...visibilityAnimationConfig?.show?.config\n }).start(({\n finished\n }) => {\n if (finished) {\n setIsTabBarHidden(false);\n }\n });\n } else {\n // eslint-disable-next-line @eslint-react/hooks-extra/no-direct-set-state-in-use-effect\n setIsTabBarHidden(true);\n const animation = visibilityAnimationConfig?.hide?.animation === 'spring' ? _Animated.default.spring : _Animated.default.timing;\n animation(visible, {\n toValue: 0,\n useNativeDriver,\n duration: 200,\n ...visibilityAnimationConfig?.hide?.config\n }).start();\n }\n return () => visible.stopAnimation();\n }, [visible, shouldShowTabBar]);\n const [layout, setLayout] = _react.default.useState({\n height: 0\n });\n const handleLayout = e => {\n const {\n height\n } = e.nativeEvent.layout;\n onHeightChange?.(height);\n setLayout(layout => {\n if (height === layout.height) {\n return layout;\n } else {\n return {\n height\n };\n }\n });\n };\n const {\n routes\n } = state;\n const tabBarHeight = (0, _elements.useFrameSize)(dimensions => getTabBarHeight({\n state,\n descriptors,\n insets,\n dimensions,\n style: [tabBarStyle, style]\n }));\n const hasHorizontalLabels = (0, _elements.useFrameSize)(dimensions => shouldUseHorizontalLabels({\n state,\n descriptors,\n dimensions\n }));\n const compact = (0, _elements.useFrameSize)(dimensions => isCompact({\n state,\n descriptors,\n dimensions\n }));\n const sidebar = tabBarPosition === 'left' || tabBarPosition === 'right';\n const spacing = tabBarVariant === 'material' ? SPACING_MATERIAL : SPACING_UIKIT;\n const minSidebarWidth = (0, _elements.useFrameSize)(size => sidebar && hasHorizontalLabels ? (0, _elements.getDefaultSidebarWidth)(size) : 0);\n const tabBarBackgroundElement = tabBarBackground?.();\n return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_Animated.default.View, {\n style: [tabBarPosition === 'left' ? styles.start : tabBarPosition === 'right' ? styles.end : styles.bottom, (_Platform.default.OS === 'web' ? tabBarPosition === 'right' : direction === 'rtl' && tabBarPosition === 'left' || direction !== 'rtl' && tabBarPosition === 'right') ? {\n borderLeftWidth: _StyleSheet.default.hairlineWidth\n } : (_Platform.default.OS === 'web' ? tabBarPosition === 'left' : direction === 'rtl' && tabBarPosition === 'right' || direction !== 'rtl' && tabBarPosition === 'left') ? {\n borderRightWidth: _StyleSheet.default.hairlineWidth\n } : tabBarPosition === 'top' ? {\n borderBottomWidth: _StyleSheet.default.hairlineWidth\n } : {\n borderTopWidth: _StyleSheet.default.hairlineWidth\n }, {\n backgroundColor: tabBarBackgroundElement != null ? 'transparent' : colors.card,\n borderColor: colors.border\n }, sidebar ? {\n paddingTop: (hasHorizontalLabels ? spacing : spacing / 2) + insets.top,\n paddingBottom: (hasHorizontalLabels ? spacing : spacing / 2) + insets.bottom,\n paddingStart: spacing + (tabBarPosition === 'left' ? insets.left : 0),\n paddingEnd: spacing + (tabBarPosition === 'right' ? insets.right : 0),\n minWidth: minSidebarWidth\n } : [{\n transform: [{\n translateY: visible.interpolate({\n inputRange: [0, 1],\n outputRange: [layout.height + insets[tabBarPosition === 'top' ? 'top' : 'bottom'] + _StyleSheet.default.hairlineWidth, 0]\n })\n }],\n // Absolutely position the tab bar so that the content is below it\n // This is needed to avoid gap at bottom when the tab bar is hidden\n position: isTabBarHidden ? 'absolute' : undefined\n }, {\n height: tabBarHeight,\n paddingBottom: tabBarPosition === 'bottom' ? insets.bottom : 0,\n paddingTop: tabBarPosition === 'top' ? insets.top : 0,\n paddingHorizontal: Math.max(insets.left, insets.right)\n }], tabBarStyle],\n pointerEvents: isTabBarHidden ? 'none' : 'auto',\n onLayout: sidebar ? undefined : handleLayout,\n children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_View.default, {\n pointerEvents: \"none\",\n style: _StyleSheet.default.absoluteFill,\n children: tabBarBackgroundElement\n }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_View.default, {\n role: \"tablist\",\n style: sidebar ? styles.sideContent : styles.bottomContent,\n children: routes.map((route, index) => {\n const focused = index === state.index;\n const {\n options\n } = descriptors[route.key];\n const onPress = () => {\n const event = navigation.emit({\n type: 'tabPress',\n target: route.key,\n canPreventDefault: true\n });\n if (!focused && !event.defaultPrevented) {\n navigation.dispatch({\n ..._native.CommonActions.navigate(route),\n target: state.key\n });\n }\n };\n const onLongPress = () => {\n navigation.emit({\n type: 'tabLongPress',\n target: route.key\n });\n };\n const label = typeof options.tabBarLabel === 'function' ? options.tabBarLabel : (0, _elements.getLabel)({\n label: options.tabBarLabel,\n title: options.title\n }, route.name);\n const accessibilityLabel = options.tabBarAccessibilityLabel !== undefined ? options.tabBarAccessibilityLabel : typeof label === 'string' && _Platform.default.OS === 'ios' ? `${label}, tab, ${index + 1} of ${routes.length}` : undefined;\n return /*#__PURE__*/(0, _jsxRuntime.jsx)(_native.NavigationContext.Provider, {\n value: descriptors[route.key].navigation,\n children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_native.NavigationRouteContext.Provider, {\n value: route,\n children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_BottomTabItem.BottomTabItem, {\n href: buildHref(route.name, route.params),\n route: route,\n descriptor: descriptors[route.key],\n focused: focused,\n horizontal: hasHorizontalLabels,\n compact: compact,\n sidebar: sidebar,\n variant: tabBarVariant,\n onPress: onPress,\n onLongPress: onLongPress,\n accessibilityLabel: accessibilityLabel,\n testID: options.tabBarButtonTestID,\n allowFontScaling: options.tabBarAllowFontScaling,\n activeTintColor: tabBarActiveTintColor,\n inactiveTintColor: tabBarInactiveTintColor,\n activeBackgroundColor: tabBarActiveBackgroundColor,\n inactiveBackgroundColor: tabBarInactiveBackgroundColor,\n button: options.tabBarButton,\n icon: options.tabBarIcon ?? (({\n color,\n size\n }) => /*#__PURE__*/(0, _jsxRuntime.jsx)(_elements.MissingIcon, {\n color: color,\n size: size\n })),\n badge: options.tabBarBadge,\n badgeStyle: options.tabBarBadgeStyle,\n label: label,\n showLabel: tabBarShowLabel,\n labelStyle: options.tabBarLabelStyle,\n iconStyle: options.tabBarIconStyle,\n style: [sidebar ? {\n marginVertical: hasHorizontalLabels ? tabBarVariant === 'material' ? 0 : 1 : spacing / 2\n } : styles.bottomItem, options.tabBarItemStyle]\n })\n })\n }, route.key);\n })\n })]\n });\n }\n const styles = _StyleSheet.default.create({\n start: {\n top: 0,\n bottom: 0,\n start: 0\n },\n end: {\n top: 0,\n bottom: 0,\n end: 0\n },\n bottom: {\n start: 0,\n end: 0,\n bottom: 0,\n elevation: 8\n },\n bottomContent: {\n flex: 1,\n flexDirection: 'row'\n },\n sideContent: {\n flex: 1,\n flexDirection: 'column'\n },\n bottomItem: {\n flex: 1\n }\n });\n});","lineCount":379,"map":[[2,2,1,0],[2,14,1,12],[4,2,1,13],[4,6,1,13,"_interopRequireDefault"],[4,28,1,13],[4,31,1,13,"require"],[4,38,1,13],[4,39,1,13,"_dependencyMap"],[4,53,1,13],[5,2,1,13,"Object"],[5,8,1,13],[5,9,1,13,"defineProperty"],[5,23,1,13],[5,24,1,13,"exports"],[5,31,1,13],[6,4,1,13,"value"],[6,9,1,13],[7,2,1,13],[8,2,1,13,"exports"],[8,9,1,13],[8,10,1,13,"BottomTabBar"],[8,22,1,13],[8,25,1,13,"BottomTabBar"],[8,37,1,13],[9,2,1,13,"exports"],[9,9,1,13],[9,10,1,13,"getTabBarHeight"],[9,25,1,13],[10,2,3,0],[10,6,3,0,"_elements"],[10,15,3,0],[10,18,3,0,"require"],[10,25,3,0],[10,26,3,0,"_dependencyMap"],[10,40,3,0],[11,2,4,0],[11,6,4,0,"_native"],[11,13,4,0],[11,16,4,0,"require"],[11,23,4,0],[11,24,4,0,"_dependencyMap"],[11,38,4,0],[12,2,5,0],[12,6,5,0,"_react"],[12,12,5,0],[12,15,5,0,"_interopRequireDefault"],[12,37,5,0],[12,38,5,0,"require"],[12,45,5,0],[12,46,5,0,"_dependencyMap"],[12,60,5,0],[13,2,5,26],[13,6,5,26,"_Animated"],[13,15,5,26],[13,18,5,26,"_interopRequireDefault"],[13,40,5,26],[13,41,5,26,"require"],[13,48,5,26],[13,49,5,26,"_dependencyMap"],[13,63,5,26],[14,2,5,26],[14,6,5,26,"_Platform"],[14,15,5,26],[14,18,5,26,"_interopRequireDefault"],[14,40,5,26],[14,41,5,26,"require"],[14,48,5,26],[14,49,5,26,"_dependencyMap"],[14,63,5,26],[15,2,5,26],[15,6,5,26,"_StyleSheet"],[15,17,5,26],[15,20,5,26,"_interopRequireDefault"],[15,42,5,26],[15,43,5,26,"require"],[15,50,5,26],[15,51,5,26,"_dependencyMap"],[15,65,5,26],[16,2,5,26],[16,6,5,26,"_View"],[16,11,5,26],[16,14,5,26,"_interopRequireDefault"],[16,36,5,26],[16,37,5,26,"require"],[16,44,5,26],[16,45,5,26,"_dependencyMap"],[16,59,5,26],[17,2,7,0],[17,6,7,0,"_BottomTabBarHeightCallbackContext"],[17,40,7,0],[17,43,7,0,"require"],[17,50,7,0],[17,51,7,0,"_dependencyMap"],[17,65,7,0],[18,2,8,0],[18,6,8,0,"_useIsKeyboardShown"],[18,25,8,0],[18,28,8,0,"require"],[18,35,8,0],[18,36,8,0,"_dependencyMap"],[18,50,8,0],[19,2,9,0],[19,6,9,0,"_BottomTabItem"],[19,20,9,0],[19,23,9,0,"require"],[19,30,9,0],[19,31,9,0,"_dependencyMap"],[19,45,9,0],[20,2,10,0],[20,6,10,0,"_jsxRuntime"],[20,17,10,0],[20,20,10,0,"require"],[20,27,10,0],[20,28,10,0,"_dependencyMap"],[20,42,10,0],[21,2,11,0],[21,8,11,6,"TABBAR_HEIGHT_UIKIT"],[21,27,11,25],[21,30,11,28],[21,32,11,30],[22,2,12,0],[22,8,12,6,"TABBAR_HEIGHT_UIKIT_COMPACT"],[22,35,12,33],[22,38,12,36],[22,40,12,38],[23,2,13,0],[23,8,13,6,"SPACING_UIKIT"],[23,21,13,19],[23,24,13,22],[23,26,13,24],[24,2,14,0],[24,8,14,6,"SPACING_MATERIAL"],[24,24,14,22],[24,27,14,25],[24,29,14,27],[25,2,15,0],[25,8,15,6,"DEFAULT_MAX_TAB_ITEM_WIDTH"],[25,34,15,32],[25,37,15,35],[25,40,15,38],[26,2,16,0],[26,8,16,6,"useNativeDriver"],[26,23,16,21],[26,26,16,24,"Platform"],[26,43,16,32],[26,44,16,33,"OS"],[26,46,16,35],[26,51,16,40],[26,56,16,45],[27,2,17,0],[27,8,17,6,"shouldUseHorizontalLabels"],[27,33,17,31],[27,36,17,34,"shouldUseHorizontalLabels"],[27,37,17,35],[28,4,18,2,"state"],[28,9,18,7],[29,4,19,2,"descriptors"],[29,15,19,13],[30,4,20,2,"dimensions"],[31,2,21,0],[31,3,21,1],[31,8,21,6],[32,4,22,2],[32,10,22,8],[33,6,23,4,"tabBarLabelPosition"],[34,4,24,2],[34,5,24,3],[34,8,24,6,"descriptors"],[34,19,24,17],[34,20,24,18,"state"],[34,25,24,23],[34,26,24,24,"routes"],[34,32,24,30],[34,33,24,31,"state"],[34,38,24,36],[34,39,24,37,"index"],[34,44,24,42],[34,45,24,43],[34,46,24,44,"key"],[34,49,24,47],[34,50,24,48],[34,51,24,49,"options"],[34,58,24,56],[35,4,25,2],[35,8,25,6,"tabBarLabelPosition"],[35,27,25,25],[35,29,25,27],[36,6,26,4],[36,14,26,12,"tabBarLabelPosition"],[36,33,26,31],[37,8,27,6],[37,13,27,11],[37,26,27,24],[38,10,28,8],[38,17,28,15],[38,21,28,19],[39,8,29,6],[39,13,29,11],[39,25,29,23],[40,10,30,8],[40,17,30,15],[40,22,30,20],[41,6,31,4],[42,4,32,2],[43,4,33,2],[43,8,33,6,"dimensions"],[43,18,33,16],[43,19,33,17,"width"],[43,24,33,22],[43,28,33,26],[43,31,33,29],[43,33,33,31],[44,6,34,4],[45,6,35,4],[45,12,35,10,"maxTabWidth"],[45,23,35,21],[45,26,35,24,"state"],[45,31,35,29],[45,32,35,30,"routes"],[45,38,35,36],[45,39,35,37,"reduce"],[45,45,35,43],[45,46,35,44],[45,47,35,45,"acc"],[45,50,35,48],[45,52,35,50,"route"],[45,57,35,55],[45,62,35,60],[46,8,36,6],[46,14,36,12],[47,10,37,8,"tabBarItemStyle"],[48,8,38,6],[48,9,38,7],[48,12,38,10,"descriptors"],[48,23,38,21],[48,24,38,22,"route"],[48,29,38,27],[48,30,38,28,"key"],[48,33,38,31],[48,34,38,32],[48,35,38,33,"options"],[48,42,38,40],[49,8,39,6],[49,14,39,12,"flattenedStyle"],[49,28,39,26],[49,31,39,29,"StyleSheet"],[49,50,39,39],[49,51,39,40,"flatten"],[49,58,39,47],[49,59,39,48,"tabBarItemStyle"],[49,74,39,63],[49,75,39,64],[50,8,40,6],[50,12,40,10,"flattenedStyle"],[50,26,40,24],[50,28,40,26],[51,10,41,8],[51,14,41,12],[51,21,41,19,"flattenedStyle"],[51,35,41,33],[51,36,41,34,"width"],[51,41,41,39],[51,46,41,44],[51,54,41,52],[51,56,41,54],[52,12,42,10],[52,19,42,17,"acc"],[52,22,42,20],[52,25,42,23,"flattenedStyle"],[52,39,42,37],[52,40,42,38,"width"],[52,45,42,43],[53,10,43,8],[53,11,43,9],[53,17,43,15],[53,21,43,19],[53,28,43,26,"flattenedStyle"],[53,42,43,40],[53,43,43,41,"maxWidth"],[53,51,43,49],[53,56,43,54],[53,64,43,62],[53,66,43,64],[54,12,44,10],[54,19,44,17,"acc"],[54,22,44,20],[54,25,44,23,"flattenedStyle"],[54,39,44,37],[54,40,44,38,"maxWidth"],[54,48,44,46],[55,10,45,8],[56,8,46,6],[57,8,47,6],[57,15,47,13,"acc"],[57,18,47,16],[57,21,47,19,"DEFAULT_MAX_TAB_ITEM_WIDTH"],[57,47,47,45],[58,6,48,4],[58,7,48,5],[58,9,48,7],[58,10,48,8],[58,11,48,9],[59,6,49,4],[59,13,49,11,"maxTabWidth"],[59,24,49,22],[59,28,49,26,"dimensions"],[59,38,49,36],[59,39,49,37,"width"],[59,44,49,42],[60,4,50,2],[60,5,50,3],[60,11,50,9],[61,6,51,4],[61,13,51,11,"dimensions"],[61,23,51,21],[61,24,51,22,"width"],[61,29,51,27],[61,32,51,30,"dimensions"],[61,42,51,40],[61,43,51,41,"height"],[61,49,51,47],[62,4,52,2],[63,2,53,0],[63,3,53,1],[64,2,54,0],[64,8,54,6,"isCompact"],[64,17,54,15],[64,20,54,18,"isCompact"],[64,21,54,19],[65,4,55,2,"state"],[65,9,55,7],[66,4,56,2,"descriptors"],[66,15,56,13],[67,4,57,2,"dimensions"],[68,2,58,0],[68,3,58,1],[68,8,58,6],[69,4,59,2],[69,10,59,8],[70,6,60,4,"tabBarPosition"],[70,20,60,18],[71,6,61,4,"tabBarVariant"],[72,4,62,2],[72,5,62,3],[72,8,62,6,"descriptors"],[72,19,62,17],[72,20,62,18,"state"],[72,25,62,23],[72,26,62,24,"routes"],[72,32,62,30],[72,33,62,31,"state"],[72,38,62,36],[72,39,62,37,"index"],[72,44,62,42],[72,45,62,43],[72,46,62,44,"key"],[72,49,62,47],[72,50,62,48],[72,51,62,49,"options"],[72,58,62,56],[73,4,63,2],[73,8,63,6,"tabBarPosition"],[73,22,63,20],[73,27,63,25],[73,33,63,31],[73,37,63,35,"tabBarPosition"],[73,51,63,49],[73,56,63,54],[73,63,63,61],[73,67,63,65,"tabBarVariant"],[73,80,63,78],[73,85,63,83],[73,95,63,93],[73,97,63,95],[74,6,64,4],[74,13,64,11],[74,18,64,16],[75,4,65,2],[76,4,66,2],[76,10,66,8,"isLandscape"],[76,21,66,19],[76,24,66,22,"dimensions"],[76,34,66,32],[76,35,66,33,"width"],[76,40,66,38],[76,43,66,41,"dimensions"],[76,53,66,51],[76,54,66,52,"height"],[76,60,66,58],[77,4,67,2],[77,10,67,8,"horizontalLabels"],[77,26,67,24],[77,29,67,27,"shouldUseHorizontalLabels"],[77,54,67,52],[77,55,67,53],[78,6,68,4,"state"],[78,11,68,9],[79,6,69,4,"descriptors"],[79,17,69,15],[80,6,70,4,"dimensions"],[81,4,71,2],[81,5,71,3],[81,6,71,4],[82,4,72,2],[82,8,72,6,"Platform"],[82,25,72,14],[82,26,72,15,"OS"],[82,28,72,17],[82,33,72,22],[82,38,72,27],[82,42,72,31],[82,43,72,32,"Platform"],[82,60,72,40],[82,61,72,41,"isPad"],[82,66,72,46],[82,70,72,50,"isLandscape"],[82,81,72,61],[82,85,72,65,"horizontalLabels"],[82,101,72,81],[82,103,72,83],[83,6,73,4],[83,13,73,11],[83,17,73,15],[84,4,74,2],[85,4,75,2],[85,11,75,9],[85,16,75,14],[86,2,76,0],[86,3,76,1],[87,2,77,7],[87,8,77,13,"getTabBarHeight"],[87,23,77,28],[87,26,77,31,"getTabBarHeight"],[87,27,77,32],[88,4,78,2,"state"],[88,9,78,7],[89,4,79,2,"descriptors"],[89,15,79,13],[90,4,80,2,"dimensions"],[90,14,80,12],[91,4,81,2,"insets"],[91,10,81,8],[92,4,82,2,"style"],[93,2,83,0],[93,3,83,1],[93,8,83,6],[94,4,84,2],[94,10,84,8],[95,6,85,4,"tabBarPosition"],[96,4,86,2],[96,5,86,3],[96,8,86,6,"descriptors"],[96,19,86,17],[96,20,86,18,"state"],[96,25,86,23],[96,26,86,24,"routes"],[96,32,86,30],[96,33,86,31,"state"],[96,38,86,36],[96,39,86,37,"index"],[96,44,86,42],[96,45,86,43],[96,46,86,44,"key"],[96,49,86,47],[96,50,86,48],[96,51,86,49,"options"],[96,58,86,56],[97,4,87,2],[97,10,87,8,"flattenedStyle"],[97,24,87,22],[97,27,87,25,"StyleSheet"],[97,46,87,35],[97,47,87,36,"flatten"],[97,54,87,43],[97,55,87,44,"style"],[97,60,87,49],[97,61,87,50],[98,4,88,2],[98,10,88,8,"customHeight"],[98,22,88,20],[98,25,88,23,"flattenedStyle"],[98,39,88,37],[98,43,88,41],[98,51,88,49],[98,55,88,53,"flattenedStyle"],[98,69,88,67],[98,72,88,70,"flattenedStyle"],[98,86,88,84],[98,87,88,85,"height"],[98,93,88,91],[98,96,88,94,"undefined"],[98,105,88,103],[99,4,89,2],[99,8,89,6],[99,15,89,13,"customHeight"],[99,27,89,25],[99,32,89,30],[99,40,89,38],[99,42,89,40],[100,6,90,4],[100,13,90,11,"customHeight"],[100,25,90,23],[101,4,91,2],[102,4,92,2],[102,10,92,8,"inset"],[102,15,92,13],[102,18,92,16,"insets"],[102,24,92,22],[102,25,92,23,"tabBarPosition"],[102,39,92,37],[102,44,92,42],[102,49,92,47],[102,52,92,50],[102,57,92,55],[102,60,92,58],[102,68,92,66],[102,69,92,67],[103,4,93,2],[103,8,93,6,"isCompact"],[103,17,93,15],[103,18,93,16],[104,6,94,4,"state"],[104,11,94,9],[105,6,95,4,"descriptors"],[105,17,95,15],[106,6,96,4,"dimensions"],[107,4,97,2],[107,5,97,3],[107,6,97,4],[107,8,97,6],[108,6,98,4],[108,13,98,11,"TABBAR_HEIGHT_UIKIT_COMPACT"],[108,40,98,38],[108,43,98,41,"inset"],[108,48,98,46],[109,4,99,2],[110,4,100,2],[110,11,100,9,"TABBAR_HEIGHT_UIKIT"],[110,30,100,28],[110,33,100,31,"inset"],[110,38,100,36],[111,2,101,0],[111,3,101,1],[112,2,101,2,"exports"],[112,9,101,2],[112,10,101,2,"getTabBarHeight"],[112,25,101,2],[112,28,101,2,"getTabBarHeight"],[112,43,101,2],[113,2,102,7],[113,11,102,16,"BottomTabBar"],[113,23,102,28,"BottomTabBar"],[113,24,102,29],[114,4,103,2,"state"],[114,9,103,7],[115,4,104,2,"navigation"],[115,14,104,12],[116,4,105,2,"descriptors"],[116,15,105,13],[117,4,106,2,"insets"],[117,10,106,8],[118,4,107,2,"style"],[119,2,108,0],[119,3,108,1],[119,5,108,3],[120,4,109,2],[120,10,109,8],[121,6,110,4,"colors"],[122,4,111,2],[122,5,111,3],[122,8,111,6],[122,12,111,6,"useTheme"],[122,28,111,14],[122,30,111,15],[122,31,111,16],[123,4,112,2],[123,10,112,8],[124,6,113,4,"direction"],[125,4,114,2],[125,5,114,3],[125,8,114,6],[125,12,114,6,"useLocale"],[125,29,114,15],[125,31,114,16],[125,32,114,17],[126,4,115,2],[126,10,115,8],[127,6,116,4,"buildHref"],[128,4,117,2],[128,5,117,3],[128,8,117,6],[128,12,117,6,"useLinkBuilder"],[128,34,117,20],[128,36,117,21],[128,37,117,22],[129,4,118,2],[129,10,118,8,"focusedRoute"],[129,22,118,20],[129,25,118,23,"state"],[129,30,118,28],[129,31,118,29,"routes"],[129,37,118,35],[129,38,118,36,"state"],[129,43,118,41],[129,44,118,42,"index"],[129,49,118,47],[129,50,118,48],[130,4,119,2],[130,10,119,8,"focusedDescriptor"],[130,27,119,25],[130,30,119,28,"descriptors"],[130,41,119,39],[130,42,119,40,"focusedRoute"],[130,54,119,52],[130,55,119,53,"key"],[130,58,119,56],[130,59,119,57],[131,4,120,2],[131,10,120,8,"focusedOptions"],[131,24,120,22],[131,27,120,25,"focusedDescriptor"],[131,44,120,42],[131,45,120,43,"options"],[131,52,120,50],[132,4,121,2],[132,10,121,8],[133,6,122,4,"tabBarPosition"],[133,20,122,18],[133,23,122,21],[133,31,122,29],[134,6,123,4,"tabBarShowLabel"],[134,21,123,19],[135,6,124,4,"tabBarLabelPosition"],[135,25,124,23],[136,6,125,4,"tabBarHideOnKeyboard"],[136,26,125,24],[136,29,125,27],[136,34,125,32],[137,6,126,4,"tabBarVisibilityAnimationConfig"],[137,37,126,35],[138,6,127,4,"tabBarVariant"],[138,19,127,17],[138,22,127,20],[138,29,127,27],[139,6,128,4,"tabBarStyle"],[139,17,128,15],[140,6,129,4,"tabBarBackground"],[140,22,129,20],[141,6,130,4,"tabBarActiveTintColor"],[141,27,130,25],[142,6,131,4,"tabBarInactiveTintColor"],[142,29,131,27],[143,6,132,4,"tabBarActiveBackgroundColor"],[143,33,132,31],[144,6,133,4,"tabBarInactiveBackgroundColor"],[145,4,134,2],[145,5,134,3],[145,8,134,6,"focusedOptions"],[145,22,134,20],[146,4,135,2],[146,8,135,6,"tabBarVariant"],[146,21,135,19],[146,26,135,24],[146,36,135,34],[146,40,135,38,"tabBarPosition"],[146,54,135,52],[146,59,135,57],[146,65,135,63],[146,69,135,67,"tabBarPosition"],[146,83,135,81],[146,88,135,86],[146,95,135,93],[146,97,135,95],[147,6,136,4],[147,12,136,10],[147,16,136,14,"Error"],[147,21,136,19],[147,22,136,20],[147,127,136,125],[147,128,136,126],[148,4,137,2],[149,4,138,2],[149,8,138,6,"tabBarLabelPosition"],[149,27,138,25],[149,32,138,30],[149,44,138,42],[149,48,138,46,"tabBarVariant"],[149,61,138,59],[149,66,138,64],[149,73,138,71],[149,78,138,76,"tabBarPosition"],[149,92,138,90],[149,97,138,95],[149,103,138,101],[149,107,138,105,"tabBarPosition"],[149,121,138,119],[149,126,138,124],[149,133,138,131],[149,134,138,132],[149,136,138,134],[150,6,139,4],[150,12,139,10],[150,16,139,14,"Error"],[150,21,139,19],[150,22,139,20],[150,167,139,165],[150,168,139,166],[151,4,140,2],[152,4,141,2],[152,10,141,8,"isKeyboardShown"],[152,25,141,23],[152,28,141,26],[152,32,141,26,"useIsKeyboardShown"],[152,70,141,44],[152,72,141,45],[152,73,141,46],[153,4,142,2],[153,10,142,8,"onHeightChange"],[153,24,142,22],[153,27,142,25,"React"],[153,41,142,30],[153,42,142,31,"useContext"],[153,52,142,41],[153,53,142,42,"BottomTabBarHeightCallbackContext"],[153,121,142,75],[153,122,142,76],[154,4,143,2],[154,10,143,8,"shouldShowTabBar"],[154,26,143,24],[154,29,143,27],[154,31,143,29,"tabBarHideOnKeyboard"],[154,51,143,49],[154,55,143,53,"isKeyboardShown"],[154,70,143,68],[154,71,143,69],[155,4,144,2],[155,10,144,8,"visibilityAnimationConfigRef"],[155,38,144,36],[155,41,144,39,"React"],[155,55,144,44],[155,56,144,45,"useRef"],[155,62,144,51],[155,63,144,52,"tabBarVisibilityAnimationConfig"],[155,94,144,83],[155,95,144,84],[156,4,145,2,"React"],[156,18,145,7],[156,19,145,8,"useEffect"],[156,28,145,17],[156,29,145,18],[156,35,145,24],[157,6,146,4,"visibilityAnimationConfigRef"],[157,34,146,32],[157,35,146,33,"current"],[157,42,146,40],[157,45,146,43,"tabBarVisibilityAnimationConfig"],[157,76,146,74],[158,4,147,2],[158,5,147,3],[158,6,147,4],[159,4,148,2],[159,10,148,8],[159,11,148,9,"isTabBarHidden"],[159,25,148,23],[159,27,148,25,"setIsTabBarHidden"],[159,44,148,42],[159,45,148,43],[159,48,148,46,"React"],[159,62,148,51],[159,63,148,52,"useState"],[159,71,148,60],[159,72,148,61],[159,73,148,62,"shouldShowTabBar"],[159,89,148,78],[159,90,148,79],[160,4,149,2],[160,10,149,8],[160,11,149,9,"visible"],[160,18,149,16],[160,19,149,17],[160,22,149,20,"React"],[160,36,149,25],[160,37,149,26,"useState"],[160,45,149,34],[160,46,149,35],[160,52,149,41],[160,56,149,45,"Animated"],[160,73,149,53],[160,74,149,54,"Value"],[160,79,149,59],[160,80,149,60,"shouldShowTabBar"],[160,96,149,76],[160,99,149,79],[160,100,149,80],[160,103,149,83],[160,104,149,84],[160,105,149,85],[160,106,149,86],[161,4,150,2,"React"],[161,18,150,7],[161,19,150,8,"useEffect"],[161,28,150,17],[161,29,150,18],[161,35,150,24],[162,6,151,4],[162,12,151,10,"visibilityAnimationConfig"],[162,37,151,35],[162,40,151,38,"visibilityAnimationConfigRef"],[162,68,151,66],[162,69,151,67,"current"],[162,76,151,74],[163,6,152,4],[163,10,152,8,"shouldShowTabBar"],[163,26,152,24],[163,28,152,26],[164,8,153,6],[164,14,153,12,"animation"],[164,23,153,21],[164,26,153,24,"visibilityAnimationConfig"],[164,51,153,49],[164,53,153,51,"show"],[164,57,153,55],[164,59,153,57,"animation"],[164,68,153,66],[164,73,153,71],[164,81,153,79],[164,84,153,82,"Animated"],[164,101,153,90],[164,102,153,91,"spring"],[164,108,153,97],[164,111,153,100,"Animated"],[164,128,153,108],[164,129,153,109,"timing"],[164,135,153,115],[165,8,154,6,"animation"],[165,17,154,15],[165,18,154,16,"visible"],[165,25,154,23],[165,27,154,25],[166,10,155,8,"toValue"],[166,17,155,15],[166,19,155,17],[166,20,155,18],[167,10,156,8,"useNativeDriver"],[167,25,156,23],[168,10,157,8,"duration"],[168,18,157,16],[168,20,157,18],[168,23,157,21],[169,10,158,8],[169,13,158,11,"visibilityAnimationConfig"],[169,38,158,36],[169,40,158,38,"show"],[169,44,158,42],[169,46,158,44,"config"],[170,8,159,6],[170,9,159,7],[170,10,159,8],[170,11,159,9,"start"],[170,16,159,14],[170,17,159,15],[170,18,159,16],[171,10,160,8,"finished"],[172,8,161,6],[172,9,161,7],[172,14,161,12],[173,10,162,8],[173,14,162,12,"finished"],[173,22,162,20],[173,24,162,22],[174,12,163,10,"setIsTabBarHidden"],[174,29,163,27],[174,30,163,28],[174,35,163,33],[174,36,163,34],[175,10,164,8],[176,8,165,6],[176,9,165,7],[176,10,165,8],[177,6,166,4],[177,7,166,5],[177,13,166,11],[178,8,167,6],[179,8,168,6,"setIsTabBarHidden"],[179,25,168,23],[179,26,168,24],[179,30,168,28],[179,31,168,29],[180,8,169,6],[180,14,169,12,"animation"],[180,23,169,21],[180,26,169,24,"visibilityAnimationConfig"],[180,51,169,49],[180,53,169,51,"hide"],[180,57,169,55],[180,59,169,57,"animation"],[180,68,169,66],[180,73,169,71],[180,81,169,79],[180,84,169,82,"Animated"],[180,101,169,90],[180,102,169,91,"spring"],[180,108,169,97],[180,111,169,100,"Animated"],[180,128,169,108],[180,129,169,109,"timing"],[180,135,169,115],[181,8,170,6,"animation"],[181,17,170,15],[181,18,170,16,"visible"],[181,25,170,23],[181,27,170,25],[182,10,171,8,"toValue"],[182,17,171,15],[182,19,171,17],[182,20,171,18],[183,10,172,8,"useNativeDriver"],[183,25,172,23],[184,10,173,8,"duration"],[184,18,173,16],[184,20,173,18],[184,23,173,21],[185,10,174,8],[185,13,174,11,"visibilityAnimationConfig"],[185,38,174,36],[185,40,174,38,"hide"],[185,44,174,42],[185,46,174,44,"config"],[186,8,175,6],[186,9,175,7],[186,10,175,8],[186,11,175,9,"start"],[186,16,175,14],[186,17,175,15],[186,18,175,16],[187,6,176,4],[188,6,177,4],[188,13,177,11],[188,19,177,17,"visible"],[188,26,177,24],[188,27,177,25,"stopAnimation"],[188,40,177,38],[188,41,177,39],[188,42,177,40],[189,4,178,2],[189,5,178,3],[189,7,178,5],[189,8,178,6,"visible"],[189,15,178,13],[189,17,178,15,"shouldShowTabBar"],[189,33,178,31],[189,34,178,32],[189,35,178,33],[190,4,179,2],[190,10,179,8],[190,11,179,9,"layout"],[190,17,179,15],[190,19,179,17,"setLayout"],[190,28,179,26],[190,29,179,27],[190,32,179,30,"React"],[190,46,179,35],[190,47,179,36,"useState"],[190,55,179,44],[190,56,179,45],[191,6,180,4,"height"],[191,12,180,10],[191,14,180,12],[192,4,181,2],[192,5,181,3],[192,6,181,4],[193,4,182,2],[193,10,182,8,"handleLayout"],[193,22,182,20],[193,25,182,23,"e"],[193,26,182,24],[193,30,182,28],[194,6,183,4],[194,12,183,10],[195,8,184,6,"height"],[196,6,185,4],[196,7,185,5],[196,10,185,8,"e"],[196,11,185,9],[196,12,185,10,"nativeEvent"],[196,23,185,21],[196,24,185,22,"layout"],[196,30,185,28],[197,6,186,4,"onHeightChange"],[197,20,186,18],[197,23,186,21,"height"],[197,29,186,27],[197,30,186,28],[198,6,187,4,"setLayout"],[198,15,187,13],[198,16,187,14,"layout"],[198,22,187,20],[198,26,187,24],[199,8,188,6],[199,12,188,10,"height"],[199,18,188,16],[199,23,188,21,"layout"],[199,29,188,27],[199,30,188,28,"height"],[199,36,188,34],[199,38,188,36],[200,10,189,8],[200,17,189,15,"layout"],[200,23,189,21],[201,8,190,6],[201,9,190,7],[201,15,190,13],[202,10,191,8],[202,17,191,15],[203,12,192,10,"height"],[204,10,193,8],[204,11,193,9],[205,8,194,6],[206,6,195,4],[206,7,195,5],[206,8,195,6],[207,4,196,2],[207,5,196,3],[208,4,197,2],[208,10,197,8],[209,6,198,4,"routes"],[210,4,199,2],[210,5,199,3],[210,8,199,6,"state"],[210,13,199,11],[211,4,200,2],[211,10,200,8,"tabBarHeight"],[211,22,200,20],[211,25,200,23],[211,29,200,23,"useFrameSize"],[211,51,200,35],[211,53,200,36,"dimensions"],[211,63,200,46],[211,67,200,50,"getTabBarHeight"],[211,82,200,65],[211,83,200,66],[212,6,201,4,"state"],[212,11,201,9],[213,6,202,4,"descriptors"],[213,17,202,15],[214,6,203,4,"insets"],[214,12,203,10],[215,6,204,4,"dimensions"],[215,16,204,14],[216,6,205,4,"style"],[216,11,205,9],[216,13,205,11],[216,14,205,12,"tabBarStyle"],[216,25,205,23],[216,27,205,25,"style"],[216,32,205,30],[217,4,206,2],[217,5,206,3],[217,6,206,4],[217,7,206,5],[218,4,207,2],[218,10,207,8,"hasHorizontalLabels"],[218,29,207,27],[218,32,207,30],[218,36,207,30,"useFrameSize"],[218,58,207,42],[218,60,207,43,"dimensions"],[218,70,207,53],[218,74,207,57,"shouldUseHorizontalLabels"],[218,99,207,82],[218,100,207,83],[219,6,208,4,"state"],[219,11,208,9],[220,6,209,4,"descriptors"],[220,17,209,15],[221,6,210,4,"dimensions"],[222,4,211,2],[222,5,211,3],[222,6,211,4],[222,7,211,5],[223,4,212,2],[223,10,212,8,"compact"],[223,17,212,15],[223,20,212,18],[223,24,212,18,"useFrameSize"],[223,46,212,30],[223,48,212,31,"dimensions"],[223,58,212,41],[223,62,212,45,"isCompact"],[223,71,212,54],[223,72,212,55],[224,6,213,4,"state"],[224,11,213,9],[225,6,214,4,"descriptors"],[225,17,214,15],[226,6,215,4,"dimensions"],[227,4,216,2],[227,5,216,3],[227,6,216,4],[227,7,216,5],[228,4,217,2],[228,10,217,8,"sidebar"],[228,17,217,15],[228,20,217,18,"tabBarPosition"],[228,34,217,32],[228,39,217,37],[228,45,217,43],[228,49,217,47,"tabBarPosition"],[228,63,217,61],[228,68,217,66],[228,75,217,73],[229,4,218,2],[229,10,218,8,"spacing"],[229,17,218,15],[229,20,218,18,"tabBarVariant"],[229,33,218,31],[229,38,218,36],[229,48,218,46],[229,51,218,49,"SPACING_MATERIAL"],[229,67,218,65],[229,70,218,68,"SPACING_UIKIT"],[229,83,218,81],[230,4,219,2],[230,10,219,8,"minSidebarWidth"],[230,25,219,23],[230,28,219,26],[230,32,219,26,"useFrameSize"],[230,54,219,38],[230,56,219,39,"size"],[230,60,219,43],[230,64,219,47,"sidebar"],[230,71,219,54],[230,75,219,58,"hasHorizontalLabels"],[230,94,219,77],[230,97,219,80],[230,101,219,80,"getDefaultSidebarWidth"],[230,133,219,102],[230,135,219,103,"size"],[230,139,219,107],[230,140,219,108],[230,143,219,111],[230,144,219,112],[230,145,219,113],[231,4,220,2],[231,10,220,8,"tabBarBackgroundElement"],[231,33,220,31],[231,36,220,34,"tabBarBackground"],[231,52,220,50],[231,55,220,53],[231,56,220,54],[232,4,221,2],[232,11,221,9],[232,24,221,22],[232,28,221,22,"_jsxs"],[232,44,221,27],[232,46,221,28,"Animated"],[232,63,221,36],[232,64,221,37,"View"],[232,68,221,41],[232,70,221,43],[233,6,222,4,"style"],[233,11,222,9],[233,13,222,11],[233,14,222,12,"tabBarPosition"],[233,28,222,26],[233,33,222,31],[233,39,222,37],[233,42,222,40,"styles"],[233,48,222,46],[233,49,222,47,"start"],[233,54,222,52],[233,57,222,55,"tabBarPosition"],[233,71,222,69],[233,76,222,74],[233,83,222,81],[233,86,222,84,"styles"],[233,92,222,90],[233,93,222,91,"end"],[233,96,222,94],[233,99,222,97,"styles"],[233,105,222,103],[233,106,222,104,"bottom"],[233,112,222,110],[233,114,222,112],[233,115,222,113,"Platform"],[233,132,222,121],[233,133,222,122,"OS"],[233,135,222,124],[233,140,222,129],[233,145,222,134],[233,148,222,137,"tabBarPosition"],[233,162,222,151],[233,167,222,156],[233,174,222,163],[233,177,222,166,"direction"],[233,186,222,175],[233,191,222,180],[233,196,222,185],[233,200,222,189,"tabBarPosition"],[233,214,222,203],[233,219,222,208],[233,225,222,214],[233,229,222,218,"direction"],[233,238,222,227],[233,243,222,232],[233,248,222,237],[233,252,222,241,"tabBarPosition"],[233,266,222,255],[233,271,222,260],[233,278,222,267],[233,282,222,271],[234,8,223,6,"borderLeftWidth"],[234,23,223,21],[234,25,223,23,"StyleSheet"],[234,44,223,33],[234,45,223,34,"hairlineWidth"],[235,6,224,4],[235,7,224,5],[235,10,224,8],[235,11,224,9,"Platform"],[235,28,224,17],[235,29,224,18,"OS"],[235,31,224,20],[235,36,224,25],[235,41,224,30],[235,44,224,33,"tabBarPosition"],[235,58,224,47],[235,63,224,52],[235,69,224,58],[235,72,224,61,"direction"],[235,81,224,70],[235,86,224,75],[235,91,224,80],[235,95,224,84,"tabBarPosition"],[235,109,224,98],[235,114,224,103],[235,121,224,110],[235,125,224,114,"direction"],[235,134,224,123],[235,139,224,128],[235,144,224,133],[235,148,224,137,"tabBarPosition"],[235,162,224,151],[235,167,224,156],[235,173,224,162],[235,177,224,166],[236,8,225,6,"borderRightWidth"],[236,24,225,22],[236,26,225,24,"StyleSheet"],[236,45,225,34],[236,46,225,35,"hairlineWidth"],[237,6,226,4],[237,7,226,5],[237,10,226,8,"tabBarPosition"],[237,24,226,22],[237,29,226,27],[237,34,226,32],[237,37,226,35],[238,8,227,6,"borderBottomWidth"],[238,25,227,23],[238,27,227,25,"StyleSheet"],[238,46,227,35],[238,47,227,36,"hairlineWidth"],[239,6,228,4],[239,7,228,5],[239,10,228,8],[240,8,229,6,"borderTopWidth"],[240,22,229,20],[240,24,229,22,"StyleSheet"],[240,43,229,32],[240,44,229,33,"hairlineWidth"],[241,6,230,4],[241,7,230,5],[241,9,230,7],[242,8,231,6,"backgroundColor"],[242,23,231,21],[242,25,231,23,"tabBarBackgroundElement"],[242,48,231,46],[242,52,231,50],[242,56,231,54],[242,59,231,57],[242,72,231,70],[242,75,231,73,"colors"],[242,81,231,79],[242,82,231,80,"card"],[242,86,231,84],[243,8,232,6,"borderColor"],[243,19,232,17],[243,21,232,19,"colors"],[243,27,232,25],[243,28,232,26,"border"],[244,6,233,4],[244,7,233,5],[244,9,233,7,"sidebar"],[244,16,233,14],[244,19,233,17],[245,8,234,6,"paddingTop"],[245,18,234,16],[245,20,234,18],[245,21,234,19,"hasHorizontalLabels"],[245,40,234,38],[245,43,234,41,"spacing"],[245,50,234,48],[245,53,234,51,"spacing"],[245,60,234,58],[245,63,234,61],[245,64,234,62],[245,68,234,66,"insets"],[245,74,234,72],[245,75,234,73,"top"],[245,78,234,76],[246,8,235,6,"paddingBottom"],[246,21,235,19],[246,23,235,21],[246,24,235,22,"hasHorizontalLabels"],[246,43,235,41],[246,46,235,44,"spacing"],[246,53,235,51],[246,56,235,54,"spacing"],[246,63,235,61],[246,66,235,64],[246,67,235,65],[246,71,235,69,"insets"],[246,77,235,75],[246,78,235,76,"bottom"],[246,84,235,82],[247,8,236,6,"paddingStart"],[247,20,236,18],[247,22,236,20,"spacing"],[247,29,236,27],[247,33,236,31,"tabBarPosition"],[247,47,236,45],[247,52,236,50],[247,58,236,56],[247,61,236,59,"insets"],[247,67,236,65],[247,68,236,66,"left"],[247,72,236,70],[247,75,236,73],[247,76,236,74],[247,77,236,75],[248,8,237,6,"paddingEnd"],[248,18,237,16],[248,20,237,18,"spacing"],[248,27,237,25],[248,31,237,29,"tabBarPosition"],[248,45,237,43],[248,50,237,48],[248,57,237,55],[248,60,237,58,"insets"],[248,66,237,64],[248,67,237,65,"right"],[248,72,237,70],[248,75,237,73],[248,76,237,74],[248,77,237,75],[249,8,238,6,"minWidth"],[249,16,238,14],[249,18,238,16,"minSidebarWidth"],[250,6,239,4],[250,7,239,5],[250,10,239,8],[250,11,239,9],[251,8,240,6,"transform"],[251,17,240,15],[251,19,240,17],[251,20,240,18],[252,10,241,8,"translateY"],[252,20,241,18],[252,22,241,20,"visible"],[252,29,241,27],[252,30,241,28,"interpolate"],[252,41,241,39],[252,42,241,40],[253,12,242,10,"inputRange"],[253,22,242,20],[253,24,242,22],[253,25,242,23],[253,26,242,24],[253,28,242,26],[253,29,242,27],[253,30,242,28],[254,12,243,10,"outputRange"],[254,23,243,21],[254,25,243,23],[254,26,243,24,"layout"],[254,32,243,30],[254,33,243,31,"height"],[254,39,243,37],[254,42,243,40,"insets"],[254,48,243,46],[254,49,243,47,"tabBarPosition"],[254,63,243,61],[254,68,243,66],[254,73,243,71],[254,76,243,74],[254,81,243,79],[254,84,243,82],[254,92,243,90],[254,93,243,91],[254,96,243,94,"StyleSheet"],[254,115,243,104],[254,116,243,105,"hairlineWidth"],[254,129,243,118],[254,131,243,120],[254,132,243,121],[255,10,244,8],[255,11,244,9],[256,8,245,6],[256,9,245,7],[256,10,245,8],[257,8,246,6],[258,8,247,6],[259,8,248,6,"position"],[259,16,248,14],[259,18,248,16,"isTabBarHidden"],[259,32,248,30],[259,35,248,33],[259,45,248,43],[259,48,248,46,"undefined"],[260,6,249,4],[260,7,249,5],[260,9,249,7],[261,8,250,6,"height"],[261,14,250,12],[261,16,250,14,"tabBarHeight"],[261,28,250,26],[262,8,251,6,"paddingBottom"],[262,21,251,19],[262,23,251,21,"tabBarPosition"],[262,37,251,35],[262,42,251,40],[262,50,251,48],[262,53,251,51,"insets"],[262,59,251,57],[262,60,251,58,"bottom"],[262,66,251,64],[262,69,251,67],[262,70,251,68],[263,8,252,6,"paddingTop"],[263,18,252,16],[263,20,252,18,"tabBarPosition"],[263,34,252,32],[263,39,252,37],[263,44,252,42],[263,47,252,45,"insets"],[263,53,252,51],[263,54,252,52,"top"],[263,57,252,55],[263,60,252,58],[263,61,252,59],[264,8,253,6,"paddingHorizontal"],[264,25,253,23],[264,27,253,25,"Math"],[264,31,253,29],[264,32,253,30,"max"],[264,35,253,33],[264,36,253,34,"insets"],[264,42,253,40],[264,43,253,41,"left"],[264,47,253,45],[264,49,253,47,"insets"],[264,55,253,53],[264,56,253,54,"right"],[264,61,253,59],[265,6,254,4],[265,7,254,5],[265,8,254,6],[265,10,254,8,"tabBarStyle"],[265,21,254,19],[265,22,254,20],[266,6,255,4,"pointerEvents"],[266,19,255,17],[266,21,255,19,"isTabBarHidden"],[266,35,255,33],[266,38,255,36],[266,44,255,42],[266,47,255,45],[266,53,255,51],[267,6,256,4,"onLayout"],[267,14,256,12],[267,16,256,14,"sidebar"],[267,23,256,21],[267,26,256,24,"undefined"],[267,35,256,33],[267,38,256,36,"handleLayout"],[267,50,256,48],[268,6,257,4,"children"],[268,14,257,12],[268,16,257,14],[268,17,257,15],[268,30,257,28],[268,34,257,28,"_jsx"],[268,49,257,32],[268,51,257,33,"View"],[268,64,257,37],[268,66,257,39],[269,8,258,6,"pointerEvents"],[269,21,258,19],[269,23,258,21],[269,29,258,27],[270,8,259,6,"style"],[270,13,259,11],[270,15,259,13,"StyleSheet"],[270,34,259,23],[270,35,259,24,"absoluteFill"],[270,47,259,36],[271,8,260,6,"children"],[271,16,260,14],[271,18,260,16,"tabBarBackgroundElement"],[272,6,261,4],[272,7,261,5],[272,8,261,6],[272,10,261,8],[272,23,261,21],[272,27,261,21,"_jsx"],[272,42,261,25],[272,44,261,26,"View"],[272,57,261,30],[272,59,261,32],[273,8,262,6,"role"],[273,12,262,10],[273,14,262,12],[273,23,262,21],[274,8,263,6,"style"],[274,13,263,11],[274,15,263,13,"sidebar"],[274,22,263,20],[274,25,263,23,"styles"],[274,31,263,29],[274,32,263,30,"sideContent"],[274,43,263,41],[274,46,263,44,"styles"],[274,52,263,50],[274,53,263,51,"bottomContent"],[274,66,263,64],[275,8,264,6,"children"],[275,16,264,14],[275,18,264,16,"routes"],[275,24,264,22],[275,25,264,23,"map"],[275,28,264,26],[275,29,264,27],[275,30,264,28,"route"],[275,35,264,33],[275,37,264,35,"index"],[275,42,264,40],[275,47,264,45],[276,10,265,8],[276,16,265,14,"focused"],[276,23,265,21],[276,26,265,24,"index"],[276,31,265,29],[276,36,265,34,"state"],[276,41,265,39],[276,42,265,40,"index"],[276,47,265,45],[277,10,266,8],[277,16,266,14],[278,12,267,10,"options"],[279,10,268,8],[279,11,268,9],[279,14,268,12,"descriptors"],[279,25,268,23],[279,26,268,24,"route"],[279,31,268,29],[279,32,268,30,"key"],[279,35,268,33],[279,36,268,34],[280,10,269,8],[280,16,269,14,"onPress"],[280,23,269,21],[280,26,269,24,"onPress"],[280,27,269,24],[280,32,269,30],[281,12,270,10],[281,18,270,16,"event"],[281,23,270,21],[281,26,270,24,"navigation"],[281,36,270,34],[281,37,270,35,"emit"],[281,41,270,39],[281,42,270,40],[282,14,271,12,"type"],[282,18,271,16],[282,20,271,18],[282,30,271,28],[283,14,272,12,"target"],[283,20,272,18],[283,22,272,20,"route"],[283,27,272,25],[283,28,272,26,"key"],[283,31,272,29],[284,14,273,12,"canPreventDefault"],[284,31,273,29],[284,33,273,31],[285,12,274,10],[285,13,274,11],[285,14,274,12],[286,12,275,10],[286,16,275,14],[286,17,275,15,"focused"],[286,24,275,22],[286,28,275,26],[286,29,275,27,"event"],[286,34,275,32],[286,35,275,33,"defaultPrevented"],[286,51,275,49],[286,53,275,51],[287,14,276,12,"navigation"],[287,24,276,22],[287,25,276,23,"dispatch"],[287,33,276,31],[287,34,276,32],[288,16,277,14],[288,19,277,17,"CommonActions"],[288,40,277,30],[288,41,277,31,"navigate"],[288,49,277,39],[288,50,277,40,"route"],[288,55,277,45],[288,56,277,46],[289,16,278,14,"target"],[289,22,278,20],[289,24,278,22,"state"],[289,29,278,27],[289,30,278,28,"key"],[290,14,279,12],[290,15,279,13],[290,16,279,14],[291,12,280,10],[292,10,281,8],[292,11,281,9],[293,10,282,8],[293,16,282,14,"onLongPress"],[293,27,282,25],[293,30,282,28,"onLongPress"],[293,31,282,28],[293,36,282,34],[294,12,283,10,"navigation"],[294,22,283,20],[294,23,283,21,"emit"],[294,27,283,25],[294,28,283,26],[295,14,284,12,"type"],[295,18,284,16],[295,20,284,18],[295,34,284,32],[296,14,285,12,"target"],[296,20,285,18],[296,22,285,20,"route"],[296,27,285,25],[296,28,285,26,"key"],[297,12,286,10],[297,13,286,11],[297,14,286,12],[298,10,287,8],[298,11,287,9],[299,10,288,8],[299,16,288,14,"label"],[299,21,288,19],[299,24,288,22],[299,31,288,29,"options"],[299,38,288,36],[299,39,288,37,"tabBarLabel"],[299,50,288,48],[299,55,288,53],[299,65,288,63],[299,68,288,66,"options"],[299,75,288,73],[299,76,288,74,"tabBarLabel"],[299,87,288,85],[299,90,288,88],[299,94,288,88,"getLabel"],[299,112,288,96],[299,114,288,97],[300,12,289,10,"label"],[300,17,289,15],[300,19,289,17,"options"],[300,26,289,24],[300,27,289,25,"tabBarLabel"],[300,38,289,36],[301,12,290,10,"title"],[301,17,290,15],[301,19,290,17,"options"],[301,26,290,24],[301,27,290,25,"title"],[302,10,291,8],[302,11,291,9],[302,13,291,11,"route"],[302,18,291,16],[302,19,291,17,"name"],[302,23,291,21],[302,24,291,22],[303,10,292,8],[303,16,292,14,"accessibilityLabel"],[303,34,292,32],[303,37,292,35,"options"],[303,44,292,42],[303,45,292,43,"tabBarAccessibilityLabel"],[303,69,292,67],[303,74,292,72,"undefined"],[303,83,292,81],[303,86,292,84,"options"],[303,93,292,91],[303,94,292,92,"tabBarAccessibilityLabel"],[303,118,292,116],[303,121,292,119],[303,128,292,126,"label"],[303,133,292,131],[303,138,292,136],[303,146,292,144],[303,150,292,148,"Platform"],[303,167,292,156],[303,168,292,157,"OS"],[303,170,292,159],[303,175,292,164],[303,180,292,169],[303,183,292,172],[303,186,292,175,"label"],[303,191,292,180],[303,201,292,190,"index"],[303,206,292,195],[303,209,292,198],[303,210,292,199],[303,217,292,206,"routes"],[303,223,292,212],[303,224,292,213,"length"],[303,230,292,219],[303,232,292,221],[303,235,292,224,"undefined"],[303,244,292,233],[304,10,293,8],[304,17,293,15],[304,30,293,28],[304,34,293,28,"_jsx"],[304,49,293,32],[304,51,293,33,"NavigationContext"],[304,76,293,50],[304,77,293,51,"Provider"],[304,85,293,59],[304,87,293,61],[305,12,294,10,"value"],[305,17,294,15],[305,19,294,17,"descriptors"],[305,30,294,28],[305,31,294,29,"route"],[305,36,294,34],[305,37,294,35,"key"],[305,40,294,38],[305,41,294,39],[305,42,294,40,"navigation"],[305,52,294,50],[306,12,295,10,"children"],[306,20,295,18],[306,22,295,20],[306,35,295,33],[306,39,295,33,"_jsx"],[306,54,295,37],[306,56,295,38,"NavigationRouteContext"],[306,86,295,60],[306,87,295,61,"Provider"],[306,95,295,69],[306,97,295,71],[307,14,296,12,"value"],[307,19,296,17],[307,21,296,19,"route"],[307,26,296,24],[308,14,297,12,"children"],[308,22,297,20],[308,24,297,22],[308,37,297,35],[308,41,297,35,"_jsx"],[308,56,297,39],[308,58,297,40,"BottomTabItem"],[308,86,297,53],[308,88,297,55],[309,16,298,14,"href"],[309,20,298,18],[309,22,298,20,"buildHref"],[309,31,298,29],[309,32,298,30,"route"],[309,37,298,35],[309,38,298,36,"name"],[309,42,298,40],[309,44,298,42,"route"],[309,49,298,47],[309,50,298,48,"params"],[309,56,298,54],[309,57,298,55],[310,16,299,14,"route"],[310,21,299,19],[310,23,299,21,"route"],[310,28,299,26],[311,16,300,14,"descriptor"],[311,26,300,24],[311,28,300,26,"descriptors"],[311,39,300,37],[311,40,300,38,"route"],[311,45,300,43],[311,46,300,44,"key"],[311,49,300,47],[311,50,300,48],[312,16,301,14,"focused"],[312,23,301,21],[312,25,301,23,"focused"],[312,32,301,30],[313,16,302,14,"horizontal"],[313,26,302,24],[313,28,302,26,"hasHorizontalLabels"],[313,47,302,45],[314,16,303,14,"compact"],[314,23,303,21],[314,25,303,23,"compact"],[314,32,303,30],[315,16,304,14,"sidebar"],[315,23,304,21],[315,25,304,23,"sidebar"],[315,32,304,30],[316,16,305,14,"variant"],[316,23,305,21],[316,25,305,23,"tabBarVariant"],[316,38,305,36],[317,16,306,14,"onPress"],[317,23,306,21],[317,25,306,23,"onPress"],[317,32,306,30],[318,16,307,14,"onLongPress"],[318,27,307,25],[318,29,307,27,"onLongPress"],[318,40,307,38],[319,16,308,14,"accessibilityLabel"],[319,34,308,32],[319,36,308,34,"accessibilityLabel"],[319,54,308,52],[320,16,309,14,"testID"],[320,22,309,20],[320,24,309,22,"options"],[320,31,309,29],[320,32,309,30,"tabBarButtonTestID"],[320,50,309,48],[321,16,310,14,"allowFontScaling"],[321,32,310,30],[321,34,310,32,"options"],[321,41,310,39],[321,42,310,40,"tabBarAllowFontScaling"],[321,64,310,62],[322,16,311,14,"activeTintColor"],[322,31,311,29],[322,33,311,31,"tabBarActiveTintColor"],[322,54,311,52],[323,16,312,14,"inactiveTintColor"],[323,33,312,31],[323,35,312,33,"tabBarInactiveTintColor"],[323,58,312,56],[324,16,313,14,"activeBackgroundColor"],[324,37,313,35],[324,39,313,37,"tabBarActiveBackgroundColor"],[324,66,313,64],[325,16,314,14,"inactiveBackgroundColor"],[325,39,314,37],[325,41,314,39,"tabBarInactiveBackgroundColor"],[325,70,314,68],[326,16,315,14,"button"],[326,22,315,20],[326,24,315,22,"options"],[326,31,315,29],[326,32,315,30,"tabBarButton"],[326,44,315,42],[327,16,316,14,"icon"],[327,20,316,18],[327,22,316,20,"options"],[327,29,316,27],[327,30,316,28,"tabBarIcon"],[327,40,316,38],[327,45,316,43],[327,46,316,44],[328,18,317,16,"color"],[328,23,317,21],[329,18,318,16,"size"],[330,16,319,14],[330,17,319,15],[330,22,319,20],[330,35,319,33],[330,39,319,33,"_jsx"],[330,54,319,37],[330,56,319,38,"MissingIcon"],[330,77,319,49],[330,79,319,51],[331,18,320,16,"color"],[331,23,320,21],[331,25,320,23,"color"],[331,30,320,28],[332,18,321,16,"size"],[332,22,321,20],[332,24,321,22,"size"],[333,16,322,14],[333,17,322,15],[333,18,322,16],[333,19,322,17],[334,16,323,14,"badge"],[334,21,323,19],[334,23,323,21,"options"],[334,30,323,28],[334,31,323,29,"tabBarBadge"],[334,42,323,40],[335,16,324,14,"badgeStyle"],[335,26,324,24],[335,28,324,26,"options"],[335,35,324,33],[335,36,324,34,"tabBarBadgeStyle"],[335,52,324,50],[336,16,325,14,"label"],[336,21,325,19],[336,23,325,21,"label"],[336,28,325,26],[337,16,326,14,"showLabel"],[337,25,326,23],[337,27,326,25,"tabBarShowLabel"],[337,42,326,40],[338,16,327,14,"labelStyle"],[338,26,327,24],[338,28,327,26,"options"],[338,35,327,33],[338,36,327,34,"tabBarLabelStyle"],[338,52,327,50],[339,16,328,14,"iconStyle"],[339,25,328,23],[339,27,328,25,"options"],[339,34,328,32],[339,35,328,33,"tabBarIconStyle"],[339,50,328,48],[340,16,329,14,"style"],[340,21,329,19],[340,23,329,21],[340,24,329,22,"sidebar"],[340,31,329,29],[340,34,329,32],[341,18,330,16,"marginVertical"],[341,32,330,30],[341,34,330,32,"hasHorizontalLabels"],[341,53,330,51],[341,56,330,54,"tabBarVariant"],[341,69,330,67],[341,74,330,72],[341,84,330,82],[341,87,330,85],[341,88,330,86],[341,91,330,89],[341,92,330,90],[341,95,330,93,"spacing"],[341,102,330,100],[341,105,330,103],[342,16,331,14],[342,17,331,15],[342,20,331,18,"styles"],[342,26,331,24],[342,27,331,25,"bottomItem"],[342,37,331,35],[342,39,331,37,"options"],[342,46,331,44],[342,47,331,45,"tabBarItemStyle"],[342,62,331,60],[343,14,332,12],[343,15,332,13],[344,12,333,10],[344,13,333,11],[345,10,334,8],[345,11,334,9],[345,13,334,11,"route"],[345,18,334,16],[345,19,334,17,"key"],[345,22,334,20],[345,23,334,21],[346,8,335,6],[346,9,335,7],[347,6,336,4],[347,7,336,5],[347,8,336,6],[348,4,337,2],[348,5,337,3],[348,6,337,4],[349,2,338,0],[350,2,339,0],[350,8,339,6,"styles"],[350,14,339,12],[350,17,339,15,"StyleSheet"],[350,36,339,25],[350,37,339,26,"create"],[350,43,339,32],[350,44,339,33],[351,4,340,2,"start"],[351,9,340,7],[351,11,340,9],[352,6,341,4,"top"],[352,9,341,7],[352,11,341,9],[352,12,341,10],[353,6,342,4,"bottom"],[353,12,342,10],[353,14,342,12],[353,15,342,13],[354,6,343,4,"start"],[354,11,343,9],[354,13,343,11],[355,4,344,2],[355,5,344,3],[356,4,345,2,"end"],[356,7,345,5],[356,9,345,7],[357,6,346,4,"top"],[357,9,346,7],[357,11,346,9],[357,12,346,10],[358,6,347,4,"bottom"],[358,12,347,10],[358,14,347,12],[358,15,347,13],[359,6,348,4,"end"],[359,9,348,7],[359,11,348,9],[360,4,349,2],[360,5,349,3],[361,4,350,2,"bottom"],[361,10,350,8],[361,12,350,10],[362,6,351,4,"start"],[362,11,351,9],[362,13,351,11],[362,14,351,12],[363,6,352,4,"end"],[363,9,352,7],[363,11,352,9],[363,12,352,10],[364,6,353,4,"bottom"],[364,12,353,10],[364,14,353,12],[364,15,353,13],[365,6,354,4,"elevation"],[365,15,354,13],[365,17,354,15],[366,4,355,2],[366,5,355,3],[367,4,356,2,"bottomContent"],[367,17,356,15],[367,19,356,17],[368,6,357,4,"flex"],[368,10,357,8],[368,12,357,10],[368,13,357,11],[369,6,358,4,"flexDirection"],[369,19,358,17],[369,21,358,19],[370,4,359,2],[370,5,359,3],[371,4,360,2,"sideContent"],[371,15,360,13],[371,17,360,15],[372,6,361,4,"flex"],[372,10,361,8],[372,12,361,10],[372,13,361,11],[373,6,362,4,"flexDirection"],[373,19,362,17],[373,21,362,19],[374,4,363,2],[374,5,363,3],[375,4,364,2,"bottomItem"],[375,14,364,12],[375,16,364,14],[376,6,365,4,"flex"],[376,10,365,8],[376,12,365,10],[377,4,366,2],[378,2,367,0],[378,3,367,1],[378,4,367,2],[379,0,367,3],[379,3]],"functionMap":{"names":["<global>","shouldUseHorizontalLabels","state.routes.reduce$argument_0","isCompact","getTabBarHeight","BottomTabBar","React.useEffect$argument_0","React.useState$argument_0","animation.start$argument_0","<anonymous>","handleLayout","setLayout$argument_0","useFrameSize$argument_0","routes.map$argument_0","onPress","onLongPress"],"mappings":"AAA;kCCgB;4CCkB;KDa;CDK;kBGC;CHsB;+BIC;CJwB;OKC;kBC2C;GDE;mCEE,kDF;kBCC;eES;OFM;WGY,6BH;GDC;uBKI;cCK;KDQ;GLC;oCOI;IPM;2COC;IPI;+BOC;IPI;uCOG,yEP;2BQ6C;wBCK;SDY;4BEC;SFK;2CJ6B;gBIM;ORa;CLG"}},"type":"js/module"}]} |