react-native-screens
Version:
Native navigation primitives for your React Native app.
11 lines • 637 B
TypeScript
import type { CodegenTypes as CT, ViewProps, ColorValue } from 'react-native';
type FinishTransitioningEvent = Readonly<{}>;
export interface NativeProps extends ViewProps {
iosPreventReattachmentOfDismissedScreens?: CT.WithDefault<boolean, true>;
iosPreventReattachmentOfDismissedModals?: CT.WithDefault<boolean, true>;
nativeContainerBackgroundColor?: ColorValue | undefined;
onFinishTransitioning?: CT.DirectEventHandler<FinishTransitioningEvent> | undefined;
}
declare const _default: import("react-native").HostComponent<NativeProps>;
export default _default;
//# sourceMappingURL=ScreenStackNativeComponent.d.ts.map