mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 05:21:02 +00:00
1 line
66 KiB
Plaintext
1 line
66 KiB
Plaintext
{"dependencies":[{"name":"@babel/runtime/helpers/slicedToArray","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"5y7e5+zC7teYEEC6niD9f5zII1M=","exportNames":["*"],"imports":1}},{"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":["*"],"imports":1}},{"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":["*"],"imports":1}},{"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":["*"],"imports":1}},{"name":"react-native","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":6,"column":0,"index":286},"end":{"line":6,"column":68,"index":354}}],"key":"KyzuX10g6ixS9UfynhmjlvCIG3g=","exportNames":["*"],"imports":1}},{"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":["*"],"imports":1}},{"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":["*"],"imports":1}},{"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":["*"],"imports":1}},{"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":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, '__esModule', {\n value: true\n });\n function _interopDefault(e) {\n return e && e.__esModule ? e : {\n default: e\n };\n }\n Object.defineProperty(exports, \"getTabBarHeight\", {\n enumerable: true,\n get: function () {\n return getTabBarHeight;\n }\n });\n exports.BottomTabBar = BottomTabBar;\n var _babelRuntimeHelpersSlicedToArray = require(_dependencyMap[0], \"@babel/runtime/helpers/slicedToArray\");\n var _slicedToArray = _interopDefault(_babelRuntimeHelpersSlicedToArray);\n var _reactNavigationElements = require(_dependencyMap[1], \"@react-navigation/elements\");\n var _reactNavigationNative = require(_dependencyMap[2], \"@react-navigation/native\");\n var _react = require(_dependencyMap[3], \"react\");\n var React = _interopDefault(_react);\n var _reactNative = require(_dependencyMap[4], \"react-native\");\n var _utilsBottomTabBarHeightCallbackContextJs = require(_dependencyMap[5], \"../utils/BottomTabBarHeightCallbackContext.js\");\n var _utilsUseIsKeyboardShownJs = require(_dependencyMap[6], \"../utils/useIsKeyboardShown.js\");\n var _BottomTabItemJs = require(_dependencyMap[7], \"./BottomTabItem.js\");\n var _reactJsxRuntime = require(_dependencyMap[8], \"react/jsx-runtime\");\n var TABBAR_HEIGHT_UIKIT = 49;\n var TABBAR_HEIGHT_UIKIT_COMPACT = 32;\n var SPACING_UIKIT = 15;\n var SPACING_MATERIAL = 12;\n var DEFAULT_MAX_TAB_ITEM_WIDTH = 125;\n var useNativeDriver = _reactNative.Platform.OS !== 'web';\n var shouldUseHorizontalLabels = _ref => {\n var state = _ref.state,\n descriptors = _ref.descriptors,\n dimensions = _ref.dimensions;\n var tabBarLabelPosition = descriptors[state.routes[state.index].key].options.tabBarLabelPosition;\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 var maxTabWidth = state.routes.reduce((acc, route) => {\n var tabBarItemStyle = descriptors[route.key].options.tabBarItemStyle;\n var flattenedStyle = _reactNative.StyleSheet.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 var isCompact = _ref2 => {\n var state = _ref2.state,\n descriptors = _ref2.descriptors,\n dimensions = _ref2.dimensions;\n var _descriptors$state$ro = descriptors[state.routes[state.index].key].options,\n tabBarPosition = _descriptors$state$ro.tabBarPosition,\n tabBarVariant = _descriptors$state$ro.tabBarVariant;\n if (tabBarPosition === 'left' || tabBarPosition === 'right' || tabBarVariant === 'material') {\n return false;\n }\n var isLandscape = dimensions.width > dimensions.height;\n var horizontalLabels = shouldUseHorizontalLabels({\n state,\n descriptors,\n dimensions\n });\n if (_reactNative.Platform.OS === 'ios' && !_reactNative.Platform.isPad && isLandscape && horizontalLabels) {\n return true;\n }\n return false;\n };\n var getTabBarHeight = _ref3 => {\n var state = _ref3.state,\n descriptors = _ref3.descriptors,\n dimensions = _ref3.dimensions,\n insets = _ref3.insets,\n style = _ref3.style;\n var tabBarPosition = descriptors[state.routes[state.index].key].options.tabBarPosition;\n var flattenedStyle = _reactNative.StyleSheet.flatten(style);\n var customHeight = flattenedStyle && 'height' in flattenedStyle ? flattenedStyle.height : undefined;\n if (typeof customHeight === 'number') {\n return customHeight;\n }\n var 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 function BottomTabBar(_ref4) {\n var state = _ref4.state,\n navigation = _ref4.navigation,\n descriptors = _ref4.descriptors,\n insets = _ref4.insets,\n style = _ref4.style;\n var _useTheme = (0, _reactNavigationNative.useTheme)(),\n colors = _useTheme.colors;\n var _useLocale = (0, _reactNavigationNative.useLocale)(),\n direction = _useLocale.direction;\n var _useLinkBuilder = (0, _reactNavigationNative.useLinkBuilder)(),\n buildHref = _useLinkBuilder.buildHref;\n var focusedRoute = state.routes[state.index];\n var focusedDescriptor = descriptors[focusedRoute.key];\n var focusedOptions = focusedDescriptor.options;\n var _focusedOptions$tabBa = focusedOptions.tabBarPosition,\n tabBarPosition = _focusedOptions$tabBa === void 0 ? 'bottom' : _focusedOptions$tabBa,\n tabBarShowLabel = focusedOptions.tabBarShowLabel,\n tabBarLabelPosition = focusedOptions.tabBarLabelPosition,\n _focusedOptions$tabBa2 = focusedOptions.tabBarHideOnKeyboard,\n tabBarHideOnKeyboard = _focusedOptions$tabBa2 === void 0 ? false : _focusedOptions$tabBa2,\n tabBarVisibilityAnimationConfig = focusedOptions.tabBarVisibilityAnimationConfig,\n _focusedOptions$tabBa3 = focusedOptions.tabBarVariant,\n tabBarVariant = _focusedOptions$tabBa3 === void 0 ? 'uikit' : _focusedOptions$tabBa3,\n tabBarStyle = focusedOptions.tabBarStyle,\n tabBarBackground = focusedOptions.tabBarBackground,\n tabBarActiveTintColor = focusedOptions.tabBarActiveTintColor,\n tabBarInactiveTintColor = focusedOptions.tabBarInactiveTintColor,\n tabBarActiveBackgroundColor = focusedOptions.tabBarActiveBackgroundColor,\n tabBarInactiveBackgroundColor = focusedOptions.tabBarInactiveBackgroundColor;\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 var isKeyboardShown = (0, _utilsUseIsKeyboardShownJs.useIsKeyboardShown)();\n var onHeightChange = React.default.useContext(_utilsBottomTabBarHeightCallbackContextJs.BottomTabBarHeightCallbackContext);\n var shouldShowTabBar = !(tabBarHideOnKeyboard && isKeyboardShown);\n var visibilityAnimationConfigRef = React.default.useRef(tabBarVisibilityAnimationConfig);\n React.default.useEffect(() => {\n visibilityAnimationConfigRef.current = tabBarVisibilityAnimationConfig;\n });\n var _React$useState = React.default.useState(!shouldShowTabBar),\n _React$useState2 = (0, _slicedToArray.default)(_React$useState, 2),\n isTabBarHidden = _React$useState2[0],\n setIsTabBarHidden = _React$useState2[1];\n var _React$useState3 = React.default.useState(() => new _reactNative.Animated.Value(shouldShowTabBar ? 1 : 0)),\n _React$useState4 = (0, _slicedToArray.default)(_React$useState3, 1),\n visible = _React$useState4[0];\n React.default.useEffect(() => {\n var visibilityAnimationConfig = visibilityAnimationConfigRef.current;\n if (shouldShowTabBar) {\n var animation = visibilityAnimationConfig?.show?.animation === 'spring' ? _reactNative.Animated.spring : _reactNative.Animated.timing;\n animation(visible, {\n toValue: 1,\n useNativeDriver,\n duration: 250,\n ...visibilityAnimationConfig?.show?.config\n }).start(_ref5 => {\n var finished = _ref5.finished;\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 var _animation = visibilityAnimationConfig?.hide?.animation === 'spring' ? _reactNative.Animated.spring : _reactNative.Animated.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 var _React$useState5 = React.default.useState({\n height: 0\n }),\n _React$useState6 = (0, _slicedToArray.default)(_React$useState5, 2),\n layout = _React$useState6[0],\n setLayout = _React$useState6[1];\n var handleLayout = e => {\n var height = e.nativeEvent.layout.height;\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 var routes = state.routes;\n var tabBarHeight = (0, _reactNavigationElements.useFrameSize)(dimensions => getTabBarHeight({\n state,\n descriptors,\n insets,\n dimensions,\n style: [tabBarStyle, style]\n }));\n var hasHorizontalLabels = (0, _reactNavigationElements.useFrameSize)(dimensions => shouldUseHorizontalLabels({\n state,\n descriptors,\n dimensions\n }));\n var compact = (0, _reactNavigationElements.useFrameSize)(dimensions => isCompact({\n state,\n descriptors,\n dimensions\n }));\n var sidebar = tabBarPosition === 'left' || tabBarPosition === 'right';\n var spacing = tabBarVariant === 'material' ? SPACING_MATERIAL : SPACING_UIKIT;\n var minSidebarWidth = (0, _reactNavigationElements.useFrameSize)(size => sidebar && hasHorizontalLabels ? (0, _reactNavigationElements.getDefaultSidebarWidth)(size) : 0);\n var tabBarBackgroundElement = tabBarBackground?.();\n return /*#__PURE__*/(0, _reactJsxRuntime.jsxs)(_reactNative.Animated.View, {\n style: [tabBarPosition === 'left' ? styles.start : tabBarPosition === 'right' ? styles.end : styles.bottom, (_reactNative.Platform.OS === 'web' ? tabBarPosition === 'right' : direction === 'rtl' && tabBarPosition === 'left' || direction !== 'rtl' && tabBarPosition === 'right') ? {\n borderLeftWidth: _reactNative.StyleSheet.hairlineWidth\n } : (_reactNative.Platform.OS === 'web' ? tabBarPosition === 'left' : direction === 'rtl' && tabBarPosition === 'right' || direction !== 'rtl' && tabBarPosition === 'left') ? {\n borderRightWidth: _reactNative.StyleSheet.hairlineWidth\n } : tabBarPosition === 'top' ? {\n borderBottomWidth: _reactNative.StyleSheet.hairlineWidth\n } : {\n borderTopWidth: _reactNative.StyleSheet.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'] + _reactNative.StyleSheet.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, _reactJsxRuntime.jsx)(_reactNative.View, {\n pointerEvents: \"none\",\n style: _reactNative.StyleSheet.absoluteFill,\n children: tabBarBackgroundElement\n }), /*#__PURE__*/(0, _reactJsxRuntime.jsx)(_reactNative.View, {\n role: \"tablist\",\n style: sidebar ? styles.sideContent : styles.bottomContent,\n children: routes.map((route, index) => {\n var focused = index === state.index;\n var options = descriptors[route.key].options;\n var onPress = () => {\n var event = navigation.emit({\n type: 'tabPress',\n target: route.key,\n canPreventDefault: true\n });\n if (!focused && !event.defaultPrevented) {\n navigation.dispatch({\n ..._reactNavigationNative.CommonActions.navigate(route),\n target: state.key\n });\n }\n };\n var onLongPress = () => {\n navigation.emit({\n type: 'tabLongPress',\n target: route.key\n });\n };\n var label = typeof options.tabBarLabel === 'function' ? options.tabBarLabel : (0, _reactNavigationElements.getLabel)({\n label: options.tabBarLabel,\n title: options.title\n }, route.name);\n var accessibilityLabel = options.tabBarAccessibilityLabel !== undefined ? options.tabBarAccessibilityLabel : typeof label === 'string' && _reactNative.Platform.OS === 'ios' ? `${label}, tab, ${index + 1} of ${routes.length}` : undefined;\n return /*#__PURE__*/(0, _reactJsxRuntime.jsx)(_reactNavigationNative.NavigationContext.Provider, {\n value: descriptors[route.key].navigation,\n children: /*#__PURE__*/(0, _reactJsxRuntime.jsx)(_reactNavigationNative.NavigationRouteContext.Provider, {\n value: route,\n children: /*#__PURE__*/(0, _reactJsxRuntime.jsx)(_BottomTabItemJs.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 ?? (_ref6 => {\n var color = _ref6.color,\n size = _ref6.size;\n return /*#__PURE__*/(0, _reactJsxRuntime.jsx)(_reactNavigationElements.MissingIcon, {\n color: color,\n size: size\n });\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 var styles = _reactNative.StyleSheet.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":376,"map":[[2,2,1,0],[2,14,1,12],[4,2,1,13,"Object"],[4,8,1,13],[4,9,1,13,"defineProperty"],[4,23,1,13],[4,24,1,13,"exports"],[4,31,1,13],[5,4,1,13,"value"],[5,9,1,13],[6,2,1,13],[7,2,1,13],[7,11,1,13,"_interopDefault"],[7,27,1,13,"e"],[7,28,1,13],[8,4,1,13],[8,11,1,13,"e"],[8,12,1,13],[8,16,1,13,"e"],[8,17,1,13],[8,18,1,13,"__esModule"],[8,28,1,13],[8,31,1,13,"e"],[8,32,1,13],[9,6,1,13,"default"],[9,13,1,13],[9,15,1,13,"e"],[10,4,1,13],[11,2,1,13],[12,2,77,0,"Object"],[12,8,77,0],[12,9,77,0,"defineProperty"],[12,23,77,0],[12,24,77,0,"exports"],[12,31,77,0],[13,4,77,0,"enumerable"],[13,14,77,0],[14,4,77,0,"get"],[14,7,77,0],[14,18,77,0,"get"],[14,19,77,0],[15,6,77,0],[15,13,77,0,"getTabBarHeight"],[15,28,77,0],[16,4,77,0],[17,2,77,0],[18,2,102,0,"exports"],[18,9,102,0],[18,10,102,0,"BottomTabBar"],[18,22,102,0],[18,25,102,0,"BottomTabBar"],[18,37,102,0],[19,2,338,1],[19,6,338,1,"_babelRuntimeHelpersSlicedToArray"],[19,39,338,1],[19,42,338,1,"require"],[19,49,338,1],[19,50,338,1,"_dependencyMap"],[19,64,338,1],[20,2,338,1],[20,6,338,1,"_slicedToArray"],[20,20,338,1],[20,23,338,1,"_interopDefault"],[20,38,338,1],[20,39,338,1,"_babelRuntimeHelpersSlicedToArray"],[20,72,338,1],[21,2,3,0],[21,6,3,0,"_reactNavigationElements"],[21,30,3,0],[21,33,3,0,"require"],[21,40,3,0],[21,41,3,0,"_dependencyMap"],[21,55,3,0],[22,2,4,0],[22,6,4,0,"_reactNavigationNative"],[22,28,4,0],[22,31,4,0,"require"],[22,38,4,0],[22,39,4,0,"_dependencyMap"],[22,53,4,0],[23,2,5,0],[23,6,5,0,"_react"],[23,12,5,0],[23,15,5,0,"require"],[23,22,5,0],[23,23,5,0,"_dependencyMap"],[23,37,5,0],[24,2,5,0],[24,6,5,0,"React"],[24,11,5,0],[24,14,5,0,"_interopDefault"],[24,29,5,0],[24,30,5,0,"_react"],[24,36,5,0],[25,2,6,0],[25,6,6,0,"_reactNative"],[25,18,6,0],[25,21,6,0,"require"],[25,28,6,0],[25,29,6,0,"_dependencyMap"],[25,43,6,0],[26,2,7,0],[26,6,7,0,"_utilsBottomTabBarHeightCallbackContextJs"],[26,47,7,0],[26,50,7,0,"require"],[26,57,7,0],[26,58,7,0,"_dependencyMap"],[26,72,7,0],[27,2,8,0],[27,6,8,0,"_utilsUseIsKeyboardShownJs"],[27,32,8,0],[27,35,8,0,"require"],[27,42,8,0],[27,43,8,0,"_dependencyMap"],[27,57,8,0],[28,2,9,0],[28,6,9,0,"_BottomTabItemJs"],[28,22,9,0],[28,25,9,0,"require"],[28,32,9,0],[28,33,9,0,"_dependencyMap"],[28,47,9,0],[29,2,10,0],[29,6,10,0,"_reactJsxRuntime"],[29,22,10,0],[29,25,10,0,"require"],[29,32,10,0],[29,33,10,0,"_dependencyMap"],[29,47,10,0],[30,2,11,0],[30,6,11,6,"TABBAR_HEIGHT_UIKIT"],[30,25,11,25],[30,28,11,28],[30,30,11,30],[31,2,12,0],[31,6,12,6,"TABBAR_HEIGHT_UIKIT_COMPACT"],[31,33,12,33],[31,36,12,36],[31,38,12,38],[32,2,13,0],[32,6,13,6,"SPACING_UIKIT"],[32,19,13,19],[32,22,13,22],[32,24,13,24],[33,2,14,0],[33,6,14,6,"SPACING_MATERIAL"],[33,22,14,22],[33,25,14,25],[33,27,14,27],[34,2,15,0],[34,6,15,6,"DEFAULT_MAX_TAB_ITEM_WIDTH"],[34,32,15,32],[34,35,15,35],[34,38,15,38],[35,2,16,0],[35,6,16,6,"useNativeDriver"],[35,21,16,21],[35,24,16,24,"Platform"],[35,36,16,32],[35,37,16,32,"Platform"],[35,45,16,32],[35,46,16,33,"OS"],[35,48,16,35],[35,53,16,40],[35,58,16,45],[36,2,17,0],[36,6,17,6,"shouldUseHorizontalLabels"],[36,31,17,31],[36,34,17,34,"_ref"],[36,38,17,34],[36,42,21,6],[37,4,21,6],[37,8,18,2,"state"],[37,13,18,7],[37,16,18,7,"_ref"],[37,20,18,7],[37,21,18,2,"state"],[37,26,18,7],[38,6,19,2,"descriptors"],[38,17,19,13],[38,20,19,13,"_ref"],[38,24,19,13],[38,25,19,2,"descriptors"],[38,36,19,13],[39,6,20,2,"dimensions"],[39,16,20,12],[39,19,20,12,"_ref"],[39,23,20,12],[39,24,20,2,"dimensions"],[39,34,20,12],[40,4,22,2],[40,8,23,4,"tabBarLabelPosition"],[40,27,23,23],[40,30,24,6,"descriptors"],[40,41,24,17],[40,42,24,18,"state"],[40,47,24,23],[40,48,24,24,"routes"],[40,54,24,30],[40,55,24,31,"state"],[40,60,24,36],[40,61,24,37,"index"],[40,66,24,42],[40,67,24,43],[40,68,24,44,"key"],[40,71,24,47],[40,72,24,48],[40,73,24,49,"options"],[40,80,24,56],[40,81,23,4,"tabBarLabelPosition"],[40,100,23,23],[41,4,25,2],[41,8,25,6,"tabBarLabelPosition"],[41,27,25,25],[41,29,25,27],[42,6,26,4],[42,14,26,12,"tabBarLabelPosition"],[42,33,26,31],[43,8,27,6],[43,13,27,11],[43,26,27,24],[44,10,28,8],[44,17,28,15],[44,21,28,19],[45,8,29,6],[45,13,29,11],[45,25,29,23],[46,10,30,8],[46,17,30,15],[46,22,30,20],[47,6,31,4],[48,4,32,2],[49,4,33,2],[49,8,33,6,"dimensions"],[49,18,33,16],[49,19,33,17,"width"],[49,24,33,22],[49,28,33,26],[49,31,33,29],[49,33,33,31],[50,6,34,4],[51,6,35,4],[51,10,35,10,"maxTabWidth"],[51,21,35,21],[51,24,35,24,"state"],[51,29,35,29],[51,30,35,30,"routes"],[51,36,35,36],[51,37,35,37,"reduce"],[51,43,35,43],[51,44,35,44],[51,45,35,45,"acc"],[51,48,35,48],[51,50,35,50,"route"],[51,55,35,55],[51,60,35,60],[52,8,36,6],[52,12,37,8,"tabBarItemStyle"],[52,27,37,23],[52,30,38,10,"descriptors"],[52,41,38,21],[52,42,38,22,"route"],[52,47,38,27],[52,48,38,28,"key"],[52,51,38,31],[52,52,38,32],[52,53,38,33,"options"],[52,60,38,40],[52,61,37,8,"tabBarItemStyle"],[52,76,37,23],[53,8,39,6],[53,12,39,12,"flattenedStyle"],[53,26,39,26],[53,29,39,29,"StyleSheet"],[53,41,39,39],[53,42,39,39,"StyleSheet"],[53,52,39,39],[53,53,39,40,"flatten"],[53,60,39,47],[53,61,39,48,"tabBarItemStyle"],[53,76,39,63],[53,77,39,64],[54,8,40,6],[54,12,40,10,"flattenedStyle"],[54,26,40,24],[54,28,40,26],[55,10,41,8],[55,14,41,12],[55,21,41,19,"flattenedStyle"],[55,35,41,33],[55,36,41,34,"width"],[55,41,41,39],[55,46,41,44],[55,54,41,52],[55,56,41,54],[56,12,42,10],[56,19,42,17,"acc"],[56,22,42,20],[56,25,42,23,"flattenedStyle"],[56,39,42,37],[56,40,42,38,"width"],[56,45,42,43],[57,10,43,8],[57,11,43,9],[57,17,43,15],[57,21,43,19],[57,28,43,26,"flattenedStyle"],[57,42,43,40],[57,43,43,41,"maxWidth"],[57,51,43,49],[57,56,43,54],[57,64,43,62],[57,66,43,64],[58,12,44,10],[58,19,44,17,"acc"],[58,22,44,20],[58,25,44,23,"flattenedStyle"],[58,39,44,37],[58,40,44,38,"maxWidth"],[58,48,44,46],[59,10,45,8],[60,8,46,6],[61,8,47,6],[61,15,47,13,"acc"],[61,18,47,16],[61,21,47,19,"DEFAULT_MAX_TAB_ITEM_WIDTH"],[61,47,47,45],[62,6,48,4],[62,7,48,5],[62,9,48,7],[62,10,48,8],[62,11,48,9],[63,6,49,4],[63,13,49,11,"maxTabWidth"],[63,24,49,22],[63,28,49,26,"dimensions"],[63,38,49,36],[63,39,49,37,"width"],[63,44,49,42],[64,4,50,2],[64,5,50,3],[64,11,50,9],[65,6,51,4],[65,13,51,11,"dimensions"],[65,23,51,21],[65,24,51,22,"width"],[65,29,51,27],[65,32,51,30,"dimensions"],[65,42,51,40],[65,43,51,41,"height"],[65,49,51,47],[66,4,52,2],[67,2,53,0],[67,3,53,1],[68,2,54,0],[68,6,54,6,"isCompact"],[68,15,54,15],[68,18,54,18,"_ref2"],[68,23,54,18],[68,27,58,6],[69,4,58,6],[69,8,55,2,"state"],[69,13,55,7],[69,16,55,7,"_ref2"],[69,21,55,7],[69,22,55,2,"state"],[69,27,55,7],[70,6,56,2,"descriptors"],[70,17,56,13],[70,20,56,13,"_ref2"],[70,25,56,13],[70,26,56,2,"descriptors"],[70,37,56,13],[71,6,57,2,"dimensions"],[71,16,57,12],[71,19,57,12,"_ref2"],[71,24,57,12],[71,25,57,2,"dimensions"],[71,35,57,12],[72,4,59,2],[72,8,59,2,"_descriptors$state$ro"],[72,29,59,2],[72,32,62,6,"descriptors"],[72,43,62,17],[72,44,62,18,"state"],[72,49,62,23],[72,50,62,24,"routes"],[72,56,62,30],[72,57,62,31,"state"],[72,62,62,36],[72,63,62,37,"index"],[72,68,62,42],[72,69,62,43],[72,70,62,44,"key"],[72,73,62,47],[72,74,62,48],[72,75,62,49,"options"],[72,82,62,56],[73,6,60,4,"tabBarPosition"],[73,20,60,18],[73,23,60,18,"_descriptors$state$ro"],[73,44,60,18],[73,45,60,4,"tabBarPosition"],[73,59,60,18],[74,6,61,4,"tabBarVariant"],[74,19,61,17],[74,22,61,17,"_descriptors$state$ro"],[74,43,61,17],[74,44,61,4,"tabBarVariant"],[74,57,61,17],[75,4,63,2],[75,8,63,6,"tabBarPosition"],[75,22,63,20],[75,27,63,25],[75,33,63,31],[75,37,63,35,"tabBarPosition"],[75,51,63,49],[75,56,63,54],[75,63,63,61],[75,67,63,65,"tabBarVariant"],[75,80,63,78],[75,85,63,83],[75,95,63,93],[75,97,63,95],[76,6,64,4],[76,13,64,11],[76,18,64,16],[77,4,65,2],[78,4,66,2],[78,8,66,8,"isLandscape"],[78,19,66,19],[78,22,66,22,"dimensions"],[78,32,66,32],[78,33,66,33,"width"],[78,38,66,38],[78,41,66,41,"dimensions"],[78,51,66,51],[78,52,66,52,"height"],[78,58,66,58],[79,4,67,2],[79,8,67,8,"horizontalLabels"],[79,24,67,24],[79,27,67,27,"shouldUseHorizontalLabels"],[79,52,67,52],[79,53,67,53],[80,6,68,4,"state"],[80,11,68,9],[81,6,69,4,"descriptors"],[81,17,69,15],[82,6,70,4,"dimensions"],[83,4,71,2],[83,5,71,3],[83,6,71,4],[84,4,72,2],[84,8,72,6,"Platform"],[84,20,72,14],[84,21,72,14,"Platform"],[84,29,72,14],[84,30,72,15,"OS"],[84,32,72,17],[84,37,72,22],[84,42,72,27],[84,46,72,31],[84,47,72,32,"Platform"],[84,59,72,40],[84,60,72,40,"Platform"],[84,68,72,40],[84,69,72,41,"isPad"],[84,74,72,46],[84,78,72,50,"isLandscape"],[84,89,72,61],[84,93,72,65,"horizontalLabels"],[84,109,72,81],[84,111,72,83],[85,6,73,4],[85,13,73,11],[85,17,73,15],[86,4,74,2],[87,4,75,2],[87,11,75,9],[87,16,75,14],[88,2,76,0],[88,3,76,1],[89,2,77,7],[89,6,77,13,"getTabBarHeight"],[89,21,77,28],[89,24,77,31,"_ref3"],[89,29,77,31],[89,33,83,6],[90,4,83,6],[90,8,78,2,"state"],[90,13,78,7],[90,16,78,7,"_ref3"],[90,21,78,7],[90,22,78,2,"state"],[90,27,78,7],[91,6,79,2,"descriptors"],[91,17,79,13],[91,20,79,13,"_ref3"],[91,25,79,13],[91,26,79,2,"descriptors"],[91,37,79,13],[92,6,80,2,"dimensions"],[92,16,80,12],[92,19,80,12,"_ref3"],[92,24,80,12],[92,25,80,2,"dimensions"],[92,35,80,12],[93,6,81,2,"insets"],[93,12,81,8],[93,15,81,8,"_ref3"],[93,20,81,8],[93,21,81,2,"insets"],[93,27,81,8],[94,6,82,2,"style"],[94,11,82,7],[94,14,82,7,"_ref3"],[94,19,82,7],[94,20,82,2,"style"],[94,25,82,7],[95,4,84,2],[95,8,85,4,"tabBarPosition"],[95,22,85,18],[95,25,86,6,"descriptors"],[95,36,86,17],[95,37,86,18,"state"],[95,42,86,23],[95,43,86,24,"routes"],[95,49,86,30],[95,50,86,31,"state"],[95,55,86,36],[95,56,86,37,"index"],[95,61,86,42],[95,62,86,43],[95,63,86,44,"key"],[95,66,86,47],[95,67,86,48],[95,68,86,49,"options"],[95,75,86,56],[95,76,85,4,"tabBarPosition"],[95,90,85,18],[96,4,87,2],[96,8,87,8,"flattenedStyle"],[96,22,87,22],[96,25,87,25,"StyleSheet"],[96,37,87,35],[96,38,87,35,"StyleSheet"],[96,48,87,35],[96,49,87,36,"flatten"],[96,56,87,43],[96,57,87,44,"style"],[96,62,87,49],[96,63,87,50],[97,4,88,2],[97,8,88,8,"customHeight"],[97,20,88,20],[97,23,88,23,"flattenedStyle"],[97,37,88,37],[97,41,88,41],[97,49,88,49],[97,53,88,53,"flattenedStyle"],[97,67,88,67],[97,70,88,70,"flattenedStyle"],[97,84,88,84],[97,85,88,85,"height"],[97,91,88,91],[97,94,88,94,"undefined"],[97,103,88,103],[98,4,89,2],[98,8,89,6],[98,15,89,13,"customHeight"],[98,27,89,25],[98,32,89,30],[98,40,89,38],[98,42,89,40],[99,6,90,4],[99,13,90,11,"customHeight"],[99,25,90,23],[100,4,91,2],[101,4,92,2],[101,8,92,8,"inset"],[101,13,92,13],[101,16,92,16,"insets"],[101,22,92,22],[101,23,92,23,"tabBarPosition"],[101,37,92,37],[101,42,92,42],[101,47,92,47],[101,50,92,50],[101,55,92,55],[101,58,92,58],[101,66,92,66],[101,67,92,67],[102,4,93,2],[102,8,93,6,"isCompact"],[102,17,93,15],[102,18,93,16],[103,6,94,4,"state"],[103,11,94,9],[104,6,95,4,"descriptors"],[104,17,95,15],[105,6,96,4,"dimensions"],[106,4,97,2],[106,5,97,3],[106,6,97,4],[106,8,97,6],[107,6,98,4],[107,13,98,11,"TABBAR_HEIGHT_UIKIT_COMPACT"],[107,40,98,38],[107,43,98,41,"inset"],[107,48,98,46],[108,4,99,2],[109,4,100,2],[109,11,100,9,"TABBAR_HEIGHT_UIKIT"],[109,30,100,28],[109,33,100,31,"inset"],[109,38,100,36],[110,2,101,0],[110,3,101,1],[111,2,102,7],[111,11,102,16,"BottomTabBar"],[111,23,102,28,"BottomTabBar"],[111,24,102,28,"_ref4"],[111,29,102,28],[111,31,108,3],[112,4,108,3],[112,8,103,2,"state"],[112,13,103,7],[112,16,103,7,"_ref4"],[112,21,103,7],[112,22,103,2,"state"],[112,27,103,7],[113,6,104,2,"navigation"],[113,16,104,12],[113,19,104,12,"_ref4"],[113,24,104,12],[113,25,104,2,"navigation"],[113,35,104,12],[114,6,105,2,"descriptors"],[114,17,105,13],[114,20,105,13,"_ref4"],[114,25,105,13],[114,26,105,2,"descriptors"],[114,37,105,13],[115,6,106,2,"insets"],[115,12,106,8],[115,15,106,8,"_ref4"],[115,20,106,8],[115,21,106,2,"insets"],[115,27,106,8],[116,6,107,2,"style"],[116,11,107,7],[116,14,107,7,"_ref4"],[116,19,107,7],[116,20,107,2,"style"],[116,25,107,7],[117,4,109,2],[117,8,109,2,"_useTheme"],[117,17,109,2],[117,20,111,6],[117,24,111,6,"useTheme"],[117,46,111,14],[117,47,111,14,"useTheme"],[117,55,111,14],[117,57,111,15],[117,58,111,16],[118,6,110,4,"colors"],[118,12,110,10],[118,15,110,10,"_useTheme"],[118,24,110,10],[118,25,110,4,"colors"],[118,31,110,10],[119,4,112,2],[119,8,112,2,"_useLocale"],[119,18,112,2],[119,21,114,6],[119,25,114,6,"useLocale"],[119,47,114,15],[119,48,114,15,"useLocale"],[119,57,114,15],[119,59,114,16],[119,60,114,17],[120,6,113,4,"direction"],[120,15,113,13],[120,18,113,13,"_useLocale"],[120,28,113,13],[120,29,113,4,"direction"],[120,38,113,13],[121,4,115,2],[121,8,115,2,"_useLinkBuilder"],[121,23,115,2],[121,26,117,6],[121,30,117,6,"useLinkBuilder"],[121,52,117,20],[121,53,117,20,"useLinkBuilder"],[121,67,117,20],[121,69,117,21],[121,70,117,22],[122,6,116,4,"buildHref"],[122,15,116,13],[122,18,116,13,"_useLinkBuilder"],[122,33,116,13],[122,34,116,4,"buildHref"],[122,43,116,13],[123,4,118,2],[123,8,118,8,"focusedRoute"],[123,20,118,20],[123,23,118,23,"state"],[123,28,118,28],[123,29,118,29,"routes"],[123,35,118,35],[123,36,118,36,"state"],[123,41,118,41],[123,42,118,42,"index"],[123,47,118,47],[123,48,118,48],[124,4,119,2],[124,8,119,8,"focusedDescriptor"],[124,25,119,25],[124,28,119,28,"descriptors"],[124,39,119,39],[124,40,119,40,"focusedRoute"],[124,52,119,52],[124,53,119,53,"key"],[124,56,119,56],[124,57,119,57],[125,4,120,2],[125,8,120,8,"focusedOptions"],[125,22,120,22],[125,25,120,25,"focusedDescriptor"],[125,42,120,42],[125,43,120,43,"options"],[125,50,120,50],[126,4,121,2],[126,8,121,2,"_focusedOptions$tabBa"],[126,29,121,2],[126,32,134,6,"focusedOptions"],[126,46,134,20],[126,47,122,4,"tabBarPosition"],[126,61,122,18],[127,6,122,4,"tabBarPosition"],[127,20,122,18],[127,23,122,18,"_focusedOptions$tabBa"],[127,44,122,18],[127,58,122,21],[127,66,122,29],[127,69,122,29,"_focusedOptions$tabBa"],[127,90,122,29],[128,6,123,4,"tabBarShowLabel"],[128,21,123,19],[128,24,134,6,"focusedOptions"],[128,38,134,20],[128,39,123,4,"tabBarShowLabel"],[128,54,123,19],[129,6,124,4,"tabBarLabelPosition"],[129,25,124,23],[129,28,134,6,"focusedOptions"],[129,42,134,20],[129,43,124,4,"tabBarLabelPosition"],[129,62,124,23],[130,6,124,23,"_focusedOptions$tabBa2"],[130,28,124,23],[130,31,134,6,"focusedOptions"],[130,45,134,20],[130,46,125,4,"tabBarHideOnKeyboard"],[130,66,125,24],[131,6,125,4,"tabBarHideOnKeyboard"],[131,26,125,24],[131,29,125,24,"_focusedOptions$tabBa2"],[131,51,125,24],[131,65,125,27],[131,70,125,32],[131,73,125,32,"_focusedOptions$tabBa2"],[131,95,125,32],[132,6,126,4,"tabBarVisibilityAnimationConfig"],[132,37,126,35],[132,40,134,6,"focusedOptions"],[132,54,134,20],[132,55,126,4,"tabBarVisibilityAnimationConfig"],[132,86,126,35],[133,6,126,35,"_focusedOptions$tabBa3"],[133,28,126,35],[133,31,134,6,"focusedOptions"],[133,45,134,20],[133,46,127,4,"tabBarVariant"],[133,59,127,17],[134,6,127,4,"tabBarVariant"],[134,19,127,17],[134,22,127,17,"_focusedOptions$tabBa3"],[134,44,127,17],[134,58,127,20],[134,65,127,27],[134,68,127,27,"_focusedOptions$tabBa3"],[134,90,127,27],[135,6,128,4,"tabBarStyle"],[135,17,128,15],[135,20,134,6,"focusedOptions"],[135,34,134,20],[135,35,128,4,"tabBarStyle"],[135,46,128,15],[136,6,129,4,"tabBarBackground"],[136,22,129,20],[136,25,134,6,"focusedOptions"],[136,39,134,20],[136,40,129,4,"tabBarBackground"],[136,56,129,20],[137,6,130,4,"tabBarActiveTintColor"],[137,27,130,25],[137,30,134,6,"focusedOptions"],[137,44,134,20],[137,45,130,4,"tabBarActiveTintColor"],[137,66,130,25],[138,6,131,4,"tabBarInactiveTintColor"],[138,29,131,27],[138,32,134,6,"focusedOptions"],[138,46,134,20],[138,47,131,4,"tabBarInactiveTintColor"],[138,70,131,27],[139,6,132,4,"tabBarActiveBackgroundColor"],[139,33,132,31],[139,36,134,6,"focusedOptions"],[139,50,134,20],[139,51,132,4,"tabBarActiveBackgroundColor"],[139,78,132,31],[140,6,133,4,"tabBarInactiveBackgroundColor"],[140,35,133,33],[140,38,134,6,"focusedOptions"],[140,52,134,20],[140,53,133,4,"tabBarInactiveBackgroundColor"],[140,82,133,33],[141,4,135,2],[141,8,135,6,"tabBarVariant"],[141,21,135,19],[141,26,135,24],[141,36,135,34],[141,40,135,38,"tabBarPosition"],[141,54,135,52],[141,59,135,57],[141,65,135,63],[141,69,135,67,"tabBarPosition"],[141,83,135,81],[141,88,135,86],[141,95,135,93],[141,97,135,95],[142,6,136,4],[142,12,136,10],[142,16,136,14,"Error"],[142,21,136,19],[142,22,136,20],[142,127,136,125],[142,128,136,126],[143,4,137,2],[144,4,138,2],[144,8,138,6,"tabBarLabelPosition"],[144,27,138,25],[144,32,138,30],[144,44,138,42],[144,48,138,46,"tabBarVariant"],[144,61,138,59],[144,66,138,64],[144,73,138,71],[144,78,138,76,"tabBarPosition"],[144,92,138,90],[144,97,138,95],[144,103,138,101],[144,107,138,105,"tabBarPosition"],[144,121,138,119],[144,126,138,124],[144,133,138,131],[144,134,138,132],[144,136,138,134],[145,6,139,4],[145,12,139,10],[145,16,139,14,"Error"],[145,21,139,19],[145,22,139,20],[145,167,139,165],[145,168,139,166],[146,4,140,2],[147,4,141,2],[147,8,141,8,"isKeyboardShown"],[147,23,141,23],[147,26,141,26],[147,30,141,26,"useIsKeyboardShown"],[147,56,141,44],[147,57,141,44,"useIsKeyboardShown"],[147,75,141,44],[147,77,141,45],[147,78,141,46],[148,4,142,2],[148,8,142,8,"onHeightChange"],[148,22,142,22],[148,25,142,25,"React"],[148,30,142,30],[148,31,142,30,"default"],[148,38,142,30],[148,39,142,31,"useContext"],[148,49,142,41],[148,50,142,42,"BottomTabBarHeightCallbackContext"],[148,91,142,75],[148,92,142,75,"BottomTabBarHeightCallbackContext"],[148,125,142,75],[148,126,142,76],[149,4,143,2],[149,8,143,8,"shouldShowTabBar"],[149,24,143,24],[149,27,143,27],[149,29,143,29,"tabBarHideOnKeyboard"],[149,49,143,49],[149,53,143,53,"isKeyboardShown"],[149,68,143,68],[149,69,143,69],[150,4,144,2],[150,8,144,8,"visibilityAnimationConfigRef"],[150,36,144,36],[150,39,144,39,"React"],[150,44,144,44],[150,45,144,44,"default"],[150,52,144,44],[150,53,144,45,"useRef"],[150,59,144,51],[150,60,144,52,"tabBarVisibilityAnimationConfig"],[150,91,144,83],[150,92,144,84],[151,4,145,2,"React"],[151,9,145,7],[151,10,145,7,"default"],[151,17,145,7],[151,18,145,8,"useEffect"],[151,27,145,17],[151,28,145,18],[151,34,145,24],[152,6,146,4,"visibilityAnimationConfigRef"],[152,34,146,32],[152,35,146,33,"current"],[152,42,146,40],[152,45,146,43,"tabBarVisibilityAnimationConfig"],[152,76,146,74],[153,4,147,2],[153,5,147,3],[153,6,147,4],[154,4,148,2],[154,8,148,2,"_React$useState"],[154,23,148,2],[154,26,148,46,"React"],[154,31,148,51],[154,32,148,51,"default"],[154,39,148,51],[154,40,148,52,"useState"],[154,48,148,60],[154,49,148,61],[154,50,148,62,"shouldShowTabBar"],[154,66,148,78],[154,67,148,79],[155,6,148,79,"_React$useState2"],[155,22,148,79],[155,29,148,79,"_slicedToArray"],[155,43,148,79],[155,44,148,79,"default"],[155,51,148,79],[155,53,148,79,"_React$useState"],[155,68,148,79],[156,6,148,9,"isTabBarHidden"],[156,20,148,23],[156,23,148,23,"_React$useState2"],[156,39,148,23],[157,6,148,25,"setIsTabBarHidden"],[157,23,148,42],[157,26,148,42,"_React$useState2"],[157,42,148,42],[158,4,149,2],[158,8,149,2,"_React$useState3"],[158,24,149,2],[158,27,149,20,"React"],[158,32,149,25],[158,33,149,25,"default"],[158,40,149,25],[158,41,149,26,"useState"],[158,49,149,34],[158,50,149,35],[158,56,149,41],[158,60,149,45,"Animated"],[158,72,149,53],[158,73,149,53,"Animated"],[158,81,149,53],[158,82,149,54,"Value"],[158,87,149,59],[158,88,149,60,"shouldShowTabBar"],[158,104,149,76],[158,107,149,79],[158,108,149,80],[158,111,149,83],[158,112,149,84],[158,113,149,85],[158,114,149,86],[159,6,149,86,"_React$useState4"],[159,22,149,86],[159,29,149,86,"_slicedToArray"],[159,43,149,86],[159,44,149,86,"default"],[159,51,149,86],[159,53,149,86,"_React$useState3"],[159,69,149,86],[160,6,149,9,"visible"],[160,13,149,16],[160,16,149,16,"_React$useState4"],[160,32,149,16],[161,4,150,2,"React"],[161,9,150,7],[161,10,150,7,"default"],[161,17,150,7],[161,18,150,8,"useEffect"],[161,27,150,17],[161,28,150,18],[161,34,150,24],[162,6,151,4],[162,10,151,10,"visibilityAnimationConfig"],[162,35,151,35],[162,38,151,38,"visibilityAnimationConfigRef"],[162,66,151,66],[162,67,151,67,"current"],[162,74,151,74],[163,6,152,4],[163,10,152,8,"shouldShowTabBar"],[163,26,152,24],[163,28,152,26],[164,8,153,6],[164,12,153,12,"animation"],[164,21,153,21],[164,24,153,24,"visibilityAnimationConfig"],[164,49,153,49],[164,51,153,51,"show"],[164,55,153,55],[164,57,153,57,"animation"],[164,66,153,66],[164,71,153,71],[164,79,153,79],[164,82,153,82,"Animated"],[164,94,153,90],[164,95,153,90,"Animated"],[164,103,153,90],[164,104,153,91,"spring"],[164,110,153,97],[164,113,153,100,"Animated"],[164,125,153,108],[164,126,153,108,"Animated"],[164,134,153,108],[164,135,153,109,"timing"],[164,141,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,"_ref5"],[170,22,159,15],[170,26,161,12],[171,10,161,12],[171,14,160,8,"finished"],[171,22,160,16],[171,25,160,16,"_ref5"],[171,30,160,16],[171,31,160,8,"finished"],[171,39,160,16],[172,10,162,8],[172,14,162,12,"finished"],[172,22,162,20],[172,24,162,22],[173,12,163,10,"setIsTabBarHidden"],[173,29,163,27],[173,30,163,28],[173,35,163,33],[173,36,163,34],[174,10,164,8],[175,8,165,6],[175,9,165,7],[175,10,165,8],[176,6,166,4],[176,7,166,5],[176,13,166,11],[177,8,167,6],[178,8,168,6,"setIsTabBarHidden"],[178,25,168,23],[178,26,168,24],[178,30,168,28],[178,31,168,29],[179,8,169,6],[179,12,169,12,"animation"],[179,22,169,21],[179,25,169,24,"visibilityAnimationConfig"],[179,50,169,49],[179,52,169,51,"hide"],[179,56,169,55],[179,58,169,57,"animation"],[179,67,169,66],[179,72,169,71],[179,80,169,79],[179,83,169,82,"Animated"],[179,95,169,90],[179,96,169,90,"Animated"],[179,104,169,90],[179,105,169,91,"spring"],[179,111,169,97],[179,114,169,100,"Animated"],[179,126,169,108],[179,127,169,108,"Animated"],[179,135,169,108],[179,136,169,109,"timing"],[179,142,169,115],[180,8,170,6,"animation"],[180,18,170,15],[180,19,170,16,"visible"],[180,26,170,23],[180,28,170,25],[181,10,171,8,"toValue"],[181,17,171,15],[181,19,171,17],[181,20,171,18],[182,10,172,8,"useNativeDriver"],[182,25,172,23],[183,10,173,8,"duration"],[183,18,173,16],[183,20,173,18],[183,23,173,21],[184,10,174,8],[184,13,174,11,"visibilityAnimationConfig"],[184,38,174,36],[184,40,174,38,"hide"],[184,44,174,42],[184,46,174,44,"config"],[185,8,175,6],[185,9,175,7],[185,10,175,8],[185,11,175,9,"start"],[185,16,175,14],[185,17,175,15],[185,18,175,16],[186,6,176,4],[187,6,177,4],[187,13,177,11],[187,19,177,17,"visible"],[187,26,177,24],[187,27,177,25,"stopAnimation"],[187,40,177,38],[187,41,177,39],[187,42,177,40],[188,4,178,2],[188,5,178,3],[188,7,178,5],[188,8,178,6,"visible"],[188,15,178,13],[188,17,178,15,"shouldShowTabBar"],[188,33,178,31],[188,34,178,32],[188,35,178,33],[189,4,179,2],[189,8,179,2,"_React$useState5"],[189,24,179,2],[189,27,179,30,"React"],[189,32,179,35],[189,33,179,35,"default"],[189,40,179,35],[189,41,179,36,"useState"],[189,49,179,44],[189,50,179,45],[190,8,180,4,"height"],[190,14,180,10],[190,16,180,12],[191,6,181,2],[191,7,181,3],[191,8,181,4],[192,6,181,4,"_React$useState6"],[192,22,181,4],[192,29,181,4,"_slicedToArray"],[192,43,181,4],[192,44,181,4,"default"],[192,51,181,4],[192,53,181,4,"_React$useState5"],[192,69,181,4],[193,6,179,9,"layout"],[193,12,179,15],[193,15,179,15,"_React$useState6"],[193,31,179,15],[194,6,179,17,"setLayout"],[194,15,179,26],[194,18,179,26,"_React$useState6"],[194,34,179,26],[195,4,182,2],[195,8,182,8,"handleLayout"],[195,20,182,20],[195,23,182,23,"e"],[195,24,182,24],[195,28,182,28],[196,6,183,4],[196,10,184,6,"height"],[196,16,184,12],[196,19,185,8,"e"],[196,20,185,9],[196,21,185,10,"nativeEvent"],[196,32,185,21],[196,33,185,22,"layout"],[196,39,185,28],[196,40,184,6,"height"],[196,46,184,12],[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,8,198,4,"routes"],[208,14,198,10],[208,17,199,6,"state"],[208,22,199,11],[208,23,198,4,"routes"],[208,29,198,10],[209,4,200,2],[209,8,200,8,"tabBarHeight"],[209,20,200,20],[209,23,200,23],[209,27,200,23,"useFrameSize"],[209,51,200,35],[209,52,200,35,"useFrameSize"],[209,64,200,35],[209,66,200,36,"dimensions"],[209,76,200,46],[209,80,200,50,"getTabBarHeight"],[209,95,200,65],[209,96,200,66],[210,6,201,4,"state"],[210,11,201,9],[211,6,202,4,"descriptors"],[211,17,202,15],[212,6,203,4,"insets"],[212,12,203,10],[213,6,204,4,"dimensions"],[213,16,204,14],[214,6,205,4,"style"],[214,11,205,9],[214,13,205,11],[214,14,205,12,"tabBarStyle"],[214,25,205,23],[214,27,205,25,"style"],[214,32,205,30],[215,4,206,2],[215,5,206,3],[215,6,206,4],[215,7,206,5],[216,4,207,2],[216,8,207,8,"hasHorizontalLabels"],[216,27,207,27],[216,30,207,30],[216,34,207,30,"useFrameSize"],[216,58,207,42],[216,59,207,42,"useFrameSize"],[216,71,207,42],[216,73,207,43,"dimensions"],[216,83,207,53],[216,87,207,57,"shouldUseHorizontalLabels"],[216,112,207,82],[216,113,207,83],[217,6,208,4,"state"],[217,11,208,9],[218,6,209,4,"descriptors"],[218,17,209,15],[219,6,210,4,"dimensions"],[220,4,211,2],[220,5,211,3],[220,6,211,4],[220,7,211,5],[221,4,212,2],[221,8,212,8,"compact"],[221,15,212,15],[221,18,212,18],[221,22,212,18,"useFrameSize"],[221,46,212,30],[221,47,212,30,"useFrameSize"],[221,59,212,30],[221,61,212,31,"dimensions"],[221,71,212,41],[221,75,212,45,"isCompact"],[221,84,212,54],[221,85,212,55],[222,6,213,4,"state"],[222,11,213,9],[223,6,214,4,"descriptors"],[223,17,214,15],[224,6,215,4,"dimensions"],[225,4,216,2],[225,5,216,3],[225,6,216,4],[225,7,216,5],[226,4,217,2],[226,8,217,8,"sidebar"],[226,15,217,15],[226,18,217,18,"tabBarPosition"],[226,32,217,32],[226,37,217,37],[226,43,217,43],[226,47,217,47,"tabBarPosition"],[226,61,217,61],[226,66,217,66],[226,73,217,73],[227,4,218,2],[227,8,218,8,"spacing"],[227,15,218,15],[227,18,218,18,"tabBarVariant"],[227,31,218,31],[227,36,218,36],[227,46,218,46],[227,49,218,49,"SPACING_MATERIAL"],[227,65,218,65],[227,68,218,68,"SPACING_UIKIT"],[227,81,218,81],[228,4,219,2],[228,8,219,8,"minSidebarWidth"],[228,23,219,23],[228,26,219,26],[228,30,219,26,"useFrameSize"],[228,54,219,38],[228,55,219,38,"useFrameSize"],[228,67,219,38],[228,69,219,39,"size"],[228,73,219,43],[228,77,219,47,"sidebar"],[228,84,219,54],[228,88,219,58,"hasHorizontalLabels"],[228,107,219,77],[228,110,219,80],[228,114,219,80,"getDefaultSidebarWidth"],[228,138,219,102],[228,139,219,102,"getDefaultSidebarWidth"],[228,161,219,102],[228,163,219,103,"size"],[228,167,219,107],[228,168,219,108],[228,171,219,111],[228,172,219,112],[228,173,219,113],[229,4,220,2],[229,8,220,8,"tabBarBackgroundElement"],[229,31,220,31],[229,34,220,34,"tabBarBackground"],[229,50,220,50],[229,53,220,53],[229,54,220,54],[230,4,221,2],[230,11,221,9],[230,24,221,22],[230,28,221,22,"_jsxs"],[230,44,221,27],[230,45,221,27,"jsxs"],[230,49,221,27],[230,51,221,28,"Animated"],[230,63,221,36],[230,64,221,36,"Animated"],[230,72,221,36],[230,73,221,37,"View"],[230,77,221,41],[230,79,221,43],[231,6,222,4,"style"],[231,11,222,9],[231,13,222,11],[231,14,222,12,"tabBarPosition"],[231,28,222,26],[231,33,222,31],[231,39,222,37],[231,42,222,40,"styles"],[231,48,222,46],[231,49,222,47,"start"],[231,54,222,52],[231,57,222,55,"tabBarPosition"],[231,71,222,69],[231,76,222,74],[231,83,222,81],[231,86,222,84,"styles"],[231,92,222,90],[231,93,222,91,"end"],[231,96,222,94],[231,99,222,97,"styles"],[231,105,222,103],[231,106,222,104,"bottom"],[231,112,222,110],[231,114,222,112],[231,115,222,113,"Platform"],[231,127,222,121],[231,128,222,121,"Platform"],[231,136,222,121],[231,137,222,122,"OS"],[231,139,222,124],[231,144,222,129],[231,149,222,134],[231,152,222,137,"tabBarPosition"],[231,166,222,151],[231,171,222,156],[231,178,222,163],[231,181,222,166,"direction"],[231,190,222,175],[231,195,222,180],[231,200,222,185],[231,204,222,189,"tabBarPosition"],[231,218,222,203],[231,223,222,208],[231,229,222,214],[231,233,222,218,"direction"],[231,242,222,227],[231,247,222,232],[231,252,222,237],[231,256,222,241,"tabBarPosition"],[231,270,222,255],[231,275,222,260],[231,282,222,267],[231,286,222,271],[232,8,223,6,"borderLeftWidth"],[232,23,223,21],[232,25,223,23,"StyleSheet"],[232,37,223,33],[232,38,223,33,"StyleSheet"],[232,48,223,33],[232,49,223,34,"hairlineWidth"],[233,6,224,4],[233,7,224,5],[233,10,224,8],[233,11,224,9,"Platform"],[233,23,224,17],[233,24,224,17,"Platform"],[233,32,224,17],[233,33,224,18,"OS"],[233,35,224,20],[233,40,224,25],[233,45,224,30],[233,48,224,33,"tabBarPosition"],[233,62,224,47],[233,67,224,52],[233,73,224,58],[233,76,224,61,"direction"],[233,85,224,70],[233,90,224,75],[233,95,224,80],[233,99,224,84,"tabBarPosition"],[233,113,224,98],[233,118,224,103],[233,125,224,110],[233,129,224,114,"direction"],[233,138,224,123],[233,143,224,128],[233,148,224,133],[233,152,224,137,"tabBarPosition"],[233,166,224,151],[233,171,224,156],[233,177,224,162],[233,181,224,166],[234,8,225,6,"borderRightWidth"],[234,24,225,22],[234,26,225,24,"StyleSheet"],[234,38,225,34],[234,39,225,34,"StyleSheet"],[234,49,225,34],[234,50,225,35,"hairlineWidth"],[235,6,226,4],[235,7,226,5],[235,10,226,8,"tabBarPosition"],[235,24,226,22],[235,29,226,27],[235,34,226,32],[235,37,226,35],[236,8,227,6,"borderBottomWidth"],[236,25,227,23],[236,27,227,25,"StyleSheet"],[236,39,227,35],[236,40,227,35,"StyleSheet"],[236,50,227,35],[236,51,227,36,"hairlineWidth"],[237,6,228,4],[237,7,228,5],[237,10,228,8],[238,8,229,6,"borderTopWidth"],[238,22,229,20],[238,24,229,22,"StyleSheet"],[238,36,229,32],[238,37,229,32,"StyleSheet"],[238,47,229,32],[238,48,229,33,"hairlineWidth"],[239,6,230,4],[239,7,230,5],[239,9,230,7],[240,8,231,6,"backgroundColor"],[240,23,231,21],[240,25,231,23,"tabBarBackgroundElement"],[240,48,231,46],[240,52,231,50],[240,56,231,54],[240,59,231,57],[240,72,231,70],[240,75,231,73,"colors"],[240,81,231,79],[240,82,231,80,"card"],[240,86,231,84],[241,8,232,6,"borderColor"],[241,19,232,17],[241,21,232,19,"colors"],[241,27,232,25],[241,28,232,26,"border"],[242,6,233,4],[242,7,233,5],[242,9,233,7,"sidebar"],[242,16,233,14],[242,19,233,17],[243,8,234,6,"paddingTop"],[243,18,234,16],[243,20,234,18],[243,21,234,19,"hasHorizontalLabels"],[243,40,234,38],[243,43,234,41,"spacing"],[243,50,234,48],[243,53,234,51,"spacing"],[243,60,234,58],[243,63,234,61],[243,64,234,62],[243,68,234,66,"insets"],[243,74,234,72],[243,75,234,73,"top"],[243,78,234,76],[244,8,235,6,"paddingBottom"],[244,21,235,19],[244,23,235,21],[244,24,235,22,"hasHorizontalLabels"],[244,43,235,41],[244,46,235,44,"spacing"],[244,53,235,51],[244,56,235,54,"spacing"],[244,63,235,61],[244,66,235,64],[244,67,235,65],[244,71,235,69,"insets"],[244,77,235,75],[244,78,235,76,"bottom"],[244,84,235,82],[245,8,236,6,"paddingStart"],[245,20,236,18],[245,22,236,20,"spacing"],[245,29,236,27],[245,33,236,31,"tabBarPosition"],[245,47,236,45],[245,52,236,50],[245,58,236,56],[245,61,236,59,"insets"],[245,67,236,65],[245,68,236,66,"left"],[245,72,236,70],[245,75,236,73],[245,76,236,74],[245,77,236,75],[246,8,237,6,"paddingEnd"],[246,18,237,16],[246,20,237,18,"spacing"],[246,27,237,25],[246,31,237,29,"tabBarPosition"],[246,45,237,43],[246,50,237,48],[246,57,237,55],[246,60,237,58,"insets"],[246,66,237,64],[246,67,237,65,"right"],[246,72,237,70],[246,75,237,73],[246,76,237,74],[246,77,237,75],[247,8,238,6,"minWidth"],[247,16,238,14],[247,18,238,16,"minSidebarWidth"],[248,6,239,4],[248,7,239,5],[248,10,239,8],[248,11,239,9],[249,8,240,6,"transform"],[249,17,240,15],[249,19,240,17],[249,20,240,18],[250,10,241,8,"translateY"],[250,20,241,18],[250,22,241,20,"visible"],[250,29,241,27],[250,30,241,28,"interpolate"],[250,41,241,39],[250,42,241,40],[251,12,242,10,"inputRange"],[251,22,242,20],[251,24,242,22],[251,25,242,23],[251,26,242,24],[251,28,242,26],[251,29,242,27],[251,30,242,28],[252,12,243,10,"outputRange"],[252,23,243,21],[252,25,243,23],[252,26,243,24,"layout"],[252,32,243,30],[252,33,243,31,"height"],[252,39,243,37],[252,42,243,40,"insets"],[252,48,243,46],[252,49,243,47,"tabBarPosition"],[252,63,243,61],[252,68,243,66],[252,73,243,71],[252,76,243,74],[252,81,243,79],[252,84,243,82],[252,92,243,90],[252,93,243,91],[252,96,243,94,"StyleSheet"],[252,108,243,104],[252,109,243,104,"StyleSheet"],[252,119,243,104],[252,120,243,105,"hairlineWidth"],[252,133,243,118],[252,135,243,120],[252,136,243,121],[253,10,244,8],[253,11,244,9],[254,8,245,6],[254,9,245,7],[254,10,245,8],[255,8,246,6],[256,8,247,6],[257,8,248,6,"position"],[257,16,248,14],[257,18,248,16,"isTabBarHidden"],[257,32,248,30],[257,35,248,33],[257,45,248,43],[257,48,248,46,"undefined"],[258,6,249,4],[258,7,249,5],[258,9,249,7],[259,8,250,6,"height"],[259,14,250,12],[259,16,250,14,"tabBarHeight"],[259,28,250,26],[260,8,251,6,"paddingBottom"],[260,21,251,19],[260,23,251,21,"tabBarPosition"],[260,37,251,35],[260,42,251,40],[260,50,251,48],[260,53,251,51,"insets"],[260,59,251,57],[260,60,251,58,"bottom"],[260,66,251,64],[260,69,251,67],[260,70,251,68],[261,8,252,6,"paddingTop"],[261,18,252,16],[261,20,252,18,"tabBarPosition"],[261,34,252,32],[261,39,252,37],[261,44,252,42],[261,47,252,45,"insets"],[261,53,252,51],[261,54,252,52,"top"],[261,57,252,55],[261,60,252,58],[261,61,252,59],[262,8,253,6,"paddingHorizontal"],[262,25,253,23],[262,27,253,25,"Math"],[262,31,253,29],[262,32,253,30,"max"],[262,35,253,33],[262,36,253,34,"insets"],[262,42,253,40],[262,43,253,41,"left"],[262,47,253,45],[262,49,253,47,"insets"],[262,55,253,53],[262,56,253,54,"right"],[262,61,253,59],[263,6,254,4],[263,7,254,5],[263,8,254,6],[263,10,254,8,"tabBarStyle"],[263,21,254,19],[263,22,254,20],[264,6,255,4,"pointerEvents"],[264,19,255,17],[264,21,255,19,"isTabBarHidden"],[264,35,255,33],[264,38,255,36],[264,44,255,42],[264,47,255,45],[264,53,255,51],[265,6,256,4,"onLayout"],[265,14,256,12],[265,16,256,14,"sidebar"],[265,23,256,21],[265,26,256,24,"undefined"],[265,35,256,33],[265,38,256,36,"handleLayout"],[265,50,256,48],[266,6,257,4,"children"],[266,14,257,12],[266,16,257,14],[266,17,257,15],[266,30,257,28],[266,34,257,28,"_jsx"],[266,50,257,32],[266,51,257,32,"jsx"],[266,54,257,32],[266,56,257,33,"View"],[266,68,257,37],[266,69,257,37,"View"],[266,73,257,37],[266,75,257,39],[267,8,258,6,"pointerEvents"],[267,21,258,19],[267,23,258,21],[267,29,258,27],[268,8,259,6,"style"],[268,13,259,11],[268,15,259,13,"StyleSheet"],[268,27,259,23],[268,28,259,23,"StyleSheet"],[268,38,259,23],[268,39,259,24,"absoluteFill"],[268,51,259,36],[269,8,260,6,"children"],[269,16,260,14],[269,18,260,16,"tabBarBackgroundElement"],[270,6,261,4],[270,7,261,5],[270,8,261,6],[270,10,261,8],[270,23,261,21],[270,27,261,21,"_jsx"],[270,43,261,25],[270,44,261,25,"jsx"],[270,47,261,25],[270,49,261,26,"View"],[270,61,261,30],[270,62,261,30,"View"],[270,66,261,30],[270,68,261,32],[271,8,262,6,"role"],[271,12,262,10],[271,14,262,12],[271,23,262,21],[272,8,263,6,"style"],[272,13,263,11],[272,15,263,13,"sidebar"],[272,22,263,20],[272,25,263,23,"styles"],[272,31,263,29],[272,32,263,30,"sideContent"],[272,43,263,41],[272,46,263,44,"styles"],[272,52,263,50],[272,53,263,51,"bottomContent"],[272,66,263,64],[273,8,264,6,"children"],[273,16,264,14],[273,18,264,16,"routes"],[273,24,264,22],[273,25,264,23,"map"],[273,28,264,26],[273,29,264,27],[273,30,264,28,"route"],[273,35,264,33],[273,37,264,35,"index"],[273,42,264,40],[273,47,264,45],[274,10,265,8],[274,14,265,14,"focused"],[274,21,265,21],[274,24,265,24,"index"],[274,29,265,29],[274,34,265,34,"state"],[274,39,265,39],[274,40,265,40,"index"],[274,45,265,45],[275,10,266,8],[275,14,267,10,"options"],[275,21,267,17],[275,24,268,12,"descriptors"],[275,35,268,23],[275,36,268,24,"route"],[275,41,268,29],[275,42,268,30,"key"],[275,45,268,33],[275,46,268,34],[275,47,267,10,"options"],[275,54,267,17],[276,10,269,8],[276,14,269,14,"onPress"],[276,21,269,21],[276,24,269,24,"onPress"],[276,25,269,24],[276,30,269,30],[277,12,270,10],[277,16,270,16,"event"],[277,21,270,21],[277,24,270,24,"navigation"],[277,34,270,34],[277,35,270,35,"emit"],[277,39,270,39],[277,40,270,40],[278,14,271,12,"type"],[278,18,271,16],[278,20,271,18],[278,30,271,28],[279,14,272,12,"target"],[279,20,272,18],[279,22,272,20,"route"],[279,27,272,25],[279,28,272,26,"key"],[279,31,272,29],[280,14,273,12,"canPreventDefault"],[280,31,273,29],[280,33,273,31],[281,12,274,10],[281,13,274,11],[281,14,274,12],[282,12,275,10],[282,16,275,14],[282,17,275,15,"focused"],[282,24,275,22],[282,28,275,26],[282,29,275,27,"event"],[282,34,275,32],[282,35,275,33,"defaultPrevented"],[282,51,275,49],[282,53,275,51],[283,14,276,12,"navigation"],[283,24,276,22],[283,25,276,23,"dispatch"],[283,33,276,31],[283,34,276,32],[284,16,277,14],[284,19,277,17,"CommonActions"],[284,41,277,30],[284,42,277,30,"CommonActions"],[284,55,277,30],[284,56,277,31,"navigate"],[284,64,277,39],[284,65,277,40,"route"],[284,70,277,45],[284,71,277,46],[285,16,278,14,"target"],[285,22,278,20],[285,24,278,22,"state"],[285,29,278,27],[285,30,278,28,"key"],[286,14,279,12],[286,15,279,13],[286,16,279,14],[287,12,280,10],[288,10,281,8],[288,11,281,9],[289,10,282,8],[289,14,282,14,"onLongPress"],[289,25,282,25],[289,28,282,28,"onLongPress"],[289,29,282,28],[289,34,282,34],[290,12,283,10,"navigation"],[290,22,283,20],[290,23,283,21,"emit"],[290,27,283,25],[290,28,283,26],[291,14,284,12,"type"],[291,18,284,16],[291,20,284,18],[291,34,284,32],[292,14,285,12,"target"],[292,20,285,18],[292,22,285,20,"route"],[292,27,285,25],[292,28,285,26,"key"],[293,12,286,10],[293,13,286,11],[293,14,286,12],[294,10,287,8],[294,11,287,9],[295,10,288,8],[295,14,288,14,"label"],[295,19,288,19],[295,22,288,22],[295,29,288,29,"options"],[295,36,288,36],[295,37,288,37,"tabBarLabel"],[295,48,288,48],[295,53,288,53],[295,63,288,63],[295,66,288,66,"options"],[295,73,288,73],[295,74,288,74,"tabBarLabel"],[295,85,288,85],[295,88,288,88],[295,92,288,88,"getLabel"],[295,116,288,96],[295,117,288,96,"getLabel"],[295,125,288,96],[295,127,288,97],[296,12,289,10,"label"],[296,17,289,15],[296,19,289,17,"options"],[296,26,289,24],[296,27,289,25,"tabBarLabel"],[296,38,289,36],[297,12,290,10,"title"],[297,17,290,15],[297,19,290,17,"options"],[297,26,290,24],[297,27,290,25,"title"],[298,10,291,8],[298,11,291,9],[298,13,291,11,"route"],[298,18,291,16],[298,19,291,17,"name"],[298,23,291,21],[298,24,291,22],[299,10,292,8],[299,14,292,14,"accessibilityLabel"],[299,32,292,32],[299,35,292,35,"options"],[299,42,292,42],[299,43,292,43,"tabBarAccessibilityLabel"],[299,67,292,67],[299,72,292,72,"undefined"],[299,81,292,81],[299,84,292,84,"options"],[299,91,292,91],[299,92,292,92,"tabBarAccessibilityLabel"],[299,116,292,116],[299,119,292,119],[299,126,292,126,"label"],[299,131,292,131],[299,136,292,136],[299,144,292,144],[299,148,292,148,"Platform"],[299,160,292,156],[299,161,292,156,"Platform"],[299,169,292,156],[299,170,292,157,"OS"],[299,172,292,159],[299,177,292,164],[299,182,292,169],[299,185,292,172],[299,188,292,175,"label"],[299,193,292,180],[299,203,292,190,"index"],[299,208,292,195],[299,211,292,198],[299,212,292,199],[299,219,292,206,"routes"],[299,225,292,212],[299,226,292,213,"length"],[299,232,292,219],[299,234,292,221],[299,237,292,224,"undefined"],[299,246,292,233],[300,10,293,8],[300,17,293,15],[300,30,293,28],[300,34,293,28,"_jsx"],[300,50,293,32],[300,51,293,32,"jsx"],[300,54,293,32],[300,56,293,33,"NavigationContext"],[300,78,293,50],[300,79,293,50,"NavigationContext"],[300,96,293,50],[300,97,293,51,"Provider"],[300,105,293,59],[300,107,293,61],[301,12,294,10,"value"],[301,17,294,15],[301,19,294,17,"descriptors"],[301,30,294,28],[301,31,294,29,"route"],[301,36,294,34],[301,37,294,35,"key"],[301,40,294,38],[301,41,294,39],[301,42,294,40,"navigation"],[301,52,294,50],[302,12,295,10,"children"],[302,20,295,18],[302,22,295,20],[302,35,295,33],[302,39,295,33,"_jsx"],[302,55,295,37],[302,56,295,37,"jsx"],[302,59,295,37],[302,61,295,38,"NavigationRouteContext"],[302,83,295,60],[302,84,295,60,"NavigationRouteContext"],[302,106,295,60],[302,107,295,61,"Provider"],[302,115,295,69],[302,117,295,71],[303,14,296,12,"value"],[303,19,296,17],[303,21,296,19,"route"],[303,26,296,24],[304,14,297,12,"children"],[304,22,297,20],[304,24,297,22],[304,37,297,35],[304,41,297,35,"_jsx"],[304,57,297,39],[304,58,297,39,"jsx"],[304,61,297,39],[304,63,297,40,"BottomTabItem"],[304,79,297,53],[304,80,297,53,"BottomTabItem"],[304,93,297,53],[304,95,297,55],[305,16,298,14,"href"],[305,20,298,18],[305,22,298,20,"buildHref"],[305,31,298,29],[305,32,298,30,"route"],[305,37,298,35],[305,38,298,36,"name"],[305,42,298,40],[305,44,298,42,"route"],[305,49,298,47],[305,50,298,48,"params"],[305,56,298,54],[305,57,298,55],[306,16,299,14,"route"],[306,21,299,19],[306,23,299,21,"route"],[306,28,299,26],[307,16,300,14,"descriptor"],[307,26,300,24],[307,28,300,26,"descriptors"],[307,39,300,37],[307,40,300,38,"route"],[307,45,300,43],[307,46,300,44,"key"],[307,49,300,47],[307,50,300,48],[308,16,301,14,"focused"],[308,23,301,21],[308,25,301,23,"focused"],[308,32,301,30],[309,16,302,14,"horizontal"],[309,26,302,24],[309,28,302,26,"hasHorizontalLabels"],[309,47,302,45],[310,16,303,14,"compact"],[310,23,303,21],[310,25,303,23,"compact"],[310,32,303,30],[311,16,304,14,"sidebar"],[311,23,304,21],[311,25,304,23,"sidebar"],[311,32,304,30],[312,16,305,14,"variant"],[312,23,305,21],[312,25,305,23,"tabBarVariant"],[312,38,305,36],[313,16,306,14,"onPress"],[313,23,306,21],[313,25,306,23,"onPress"],[313,32,306,30],[314,16,307,14,"onLongPress"],[314,27,307,25],[314,29,307,27,"onLongPress"],[314,40,307,38],[315,16,308,14,"accessibilityLabel"],[315,34,308,32],[315,36,308,34,"accessibilityLabel"],[315,54,308,52],[316,16,309,14,"testID"],[316,22,309,20],[316,24,309,22,"options"],[316,31,309,29],[316,32,309,30,"tabBarButtonTestID"],[316,50,309,48],[317,16,310,14,"allowFontScaling"],[317,32,310,30],[317,34,310,32,"options"],[317,41,310,39],[317,42,310,40,"tabBarAllowFontScaling"],[317,64,310,62],[318,16,311,14,"activeTintColor"],[318,31,311,29],[318,33,311,31,"tabBarActiveTintColor"],[318,54,311,52],[319,16,312,14,"inactiveTintColor"],[319,33,312,31],[319,35,312,33,"tabBarInactiveTintColor"],[319,58,312,56],[320,16,313,14,"activeBackgroundColor"],[320,37,313,35],[320,39,313,37,"tabBarActiveBackgroundColor"],[320,66,313,64],[321,16,314,14,"inactiveBackgroundColor"],[321,39,314,37],[321,41,314,39,"tabBarInactiveBackgroundColor"],[321,70,314,68],[322,16,315,14,"button"],[322,22,315,20],[322,24,315,22,"options"],[322,31,315,29],[322,32,315,30,"tabBarButton"],[322,44,315,42],[323,16,316,14,"icon"],[323,20,316,18],[323,22,316,20,"options"],[323,29,316,27],[323,30,316,28,"tabBarIcon"],[323,40,316,38],[323,45,316,43,"_ref6"],[323,50,316,43],[324,18,316,43],[324,22,317,16,"color"],[324,27,317,21],[324,30,317,21,"_ref6"],[324,35,317,21],[324,36,317,16,"color"],[324,41,317,21],[325,20,318,16,"size"],[325,24,318,20],[325,27,318,20,"_ref6"],[325,32,318,20],[325,33,318,16,"size"],[325,37,318,20],[326,18,318,20],[326,25,319,20],[326,38,319,33],[326,42,319,33,"_jsx"],[326,58,319,37],[326,59,319,37,"jsx"],[326,62,319,37],[326,64,319,38,"MissingIcon"],[326,88,319,49],[326,89,319,49,"MissingIcon"],[326,100,319,49],[326,102,319,51],[327,20,320,16,"color"],[327,25,320,21],[327,27,320,23,"color"],[327,32,320,28],[328,20,321,16,"size"],[328,24,321,20],[328,26,321,22,"size"],[329,18,322,14],[329,19,322,15],[329,20,322,16],[330,16,322,16],[330,18,322,17],[331,16,323,14,"badge"],[331,21,323,19],[331,23,323,21,"options"],[331,30,323,28],[331,31,323,29,"tabBarBadge"],[331,42,323,40],[332,16,324,14,"badgeStyle"],[332,26,324,24],[332,28,324,26,"options"],[332,35,324,33],[332,36,324,34,"tabBarBadgeStyle"],[332,52,324,50],[333,16,325,14,"label"],[333,21,325,19],[333,23,325,21,"label"],[333,28,325,26],[334,16,326,14,"showLabel"],[334,25,326,23],[334,27,326,25,"tabBarShowLabel"],[334,42,326,40],[335,16,327,14,"labelStyle"],[335,26,327,24],[335,28,327,26,"options"],[335,35,327,33],[335,36,327,34,"tabBarLabelStyle"],[335,52,327,50],[336,16,328,14,"iconStyle"],[336,25,328,23],[336,27,328,25,"options"],[336,34,328,32],[336,35,328,33,"tabBarIconStyle"],[336,50,328,48],[337,16,329,14,"style"],[337,21,329,19],[337,23,329,21],[337,24,329,22,"sidebar"],[337,31,329,29],[337,34,329,32],[338,18,330,16,"marginVertical"],[338,32,330,30],[338,34,330,32,"hasHorizontalLabels"],[338,53,330,51],[338,56,330,54,"tabBarVariant"],[338,69,330,67],[338,74,330,72],[338,84,330,82],[338,87,330,85],[338,88,330,86],[338,91,330,89],[338,92,330,90],[338,95,330,93,"spacing"],[338,102,330,100],[338,105,330,103],[339,16,331,14],[339,17,331,15],[339,20,331,18,"styles"],[339,26,331,24],[339,27,331,25,"bottomItem"],[339,37,331,35],[339,39,331,37,"options"],[339,46,331,44],[339,47,331,45,"tabBarItemStyle"],[339,62,331,60],[340,14,332,12],[340,15,332,13],[341,12,333,10],[341,13,333,11],[342,10,334,8],[342,11,334,9],[342,13,334,11,"route"],[342,18,334,16],[342,19,334,17,"key"],[342,22,334,20],[342,23,334,21],[343,8,335,6],[343,9,335,7],[344,6,336,4],[344,7,336,5],[344,8,336,6],[345,4,337,2],[345,5,337,3],[345,6,337,4],[346,2,338,0],[347,2,339,0],[347,6,339,6,"styles"],[347,12,339,12],[347,15,339,15,"StyleSheet"],[347,27,339,25],[347,28,339,25,"StyleSheet"],[347,38,339,25],[347,39,339,26,"create"],[347,45,339,32],[347,46,339,33],[348,4,340,2,"start"],[348,9,340,7],[348,11,340,9],[349,6,341,4,"top"],[349,9,341,7],[349,11,341,9],[349,12,341,10],[350,6,342,4,"bottom"],[350,12,342,10],[350,14,342,12],[350,15,342,13],[351,6,343,4,"start"],[351,11,343,9],[351,13,343,11],[352,4,344,2],[352,5,344,3],[353,4,345,2,"end"],[353,7,345,5],[353,9,345,7],[354,6,346,4,"top"],[354,9,346,7],[354,11,346,9],[354,12,346,10],[355,6,347,4,"bottom"],[355,12,347,10],[355,14,347,12],[355,15,347,13],[356,6,348,4,"end"],[356,9,348,7],[356,11,348,9],[357,4,349,2],[357,5,349,3],[358,4,350,2,"bottom"],[358,10,350,8],[358,12,350,10],[359,6,351,4,"start"],[359,11,351,9],[359,13,351,11],[359,14,351,12],[360,6,352,4,"end"],[360,9,352,7],[360,11,352,9],[360,12,352,10],[361,6,353,4,"bottom"],[361,12,353,10],[361,14,353,12],[361,15,353,13],[362,6,354,4,"elevation"],[362,15,354,13],[362,17,354,15],[363,4,355,2],[363,5,355,3],[364,4,356,2,"bottomContent"],[364,17,356,15],[364,19,356,17],[365,6,357,4,"flex"],[365,10,357,8],[365,12,357,10],[365,13,357,11],[366,6,358,4,"flexDirection"],[366,19,358,17],[366,21,358,19],[367,4,359,2],[367,5,359,3],[368,4,360,2,"sideContent"],[368,15,360,13],[368,17,360,15],[369,6,361,4,"flex"],[369,10,361,8],[369,12,361,10],[369,13,361,11],[370,6,362,4,"flexDirection"],[370,19,362,17],[370,21,362,19],[371,4,363,2],[371,5,363,3],[372,4,364,2,"bottomItem"],[372,14,364,12],[372,16,364,14],[373,6,365,4,"flex"],[373,10,365,8],[373,12,365,10],[374,4,366,2],[375,2,367,0],[375,3,367,1],[375,4,367,2],[376,0,367,3],[376,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"},"hasCjsExports":false},"type":"js/module"}]} |