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