UNPKG

@react-navigation/bottom-tabs

Version:

Bottom tab navigator following iOS design guidelines

18 lines 733 B
import * as React from 'react'; import { Animated, type StyleProp, type ViewProps, type ViewStyle } from 'react-native'; type Props = { enabled: boolean; active: 0 | 1 | 2 | Animated.AnimatedInterpolation<0 | 1>; children: React.ReactNode; freezeOnBlur?: boolean; shouldFreeze: boolean; style?: StyleProp<ViewStyle>; }; export declare const MaybeScreenContainer: ({ enabled, ...rest }: ViewProps & { enabled: boolean; hasTwoStates: boolean; children: React.ReactNode; }) => import("react/jsx-runtime").JSX.Element; export declare function MaybeScreen({ enabled, active, ...rest }: ViewProps & Props): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=ScreenFallback.d.ts.map