@react-navigation/stack
Version:
Stack navigator component for iOS and Android with animated transitions and gestures
15 lines • 634 B
TypeScript
import * as React from 'react';
import { Animated, type ViewProps } from 'react-native';
export declare const MaybeScreenContainer: ({ enabled, ...rest }: ViewProps & {
enabled: boolean;
children: React.ReactNode;
}) => import("react/jsx-runtime").JSX.Element;
export declare const MaybeScreen: ({ enabled, active, ...rest }: ViewProps & {
enabled: boolean;
active: 0 | 1 | Animated.AnimatedInterpolation<0 | 1>;
children: React.ReactNode;
freezeOnBlur?: boolean;
shouldFreeze: boolean;
homeIndicatorHidden?: boolean;
}) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=Screens.d.ts.map