mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-04-23 04:00:15 +08:00
46 lines
1.1 KiB
TypeScript
46 lines
1.1 KiB
TypeScript
import * as CardStyleInterpolators from './TransitionConfigs/CardStyleInterpolators';
|
|
import * as HeaderStyleInterpolators from './TransitionConfigs/HeaderStyleInterpolators';
|
|
import * as TransitionPresets from './TransitionConfigs/TransitionPresets';
|
|
|
|
/**
|
|
* Navigators
|
|
*/
|
|
export {
|
|
default as createStackNavigator,
|
|
} from './navigators/createStackNavigator';
|
|
|
|
export const Assets = [
|
|
require('./views/assets/back-icon.png'),
|
|
require('./views/assets/back-icon-mask.png'),
|
|
];
|
|
|
|
/**
|
|
* Views
|
|
*/
|
|
export { default as Header } from './views/Header/Header';
|
|
export { default as HeaderTitle } from './views/Header/HeaderTitle';
|
|
export { default as HeaderBackButton } from './views/Header/HeaderBackButton';
|
|
|
|
/**
|
|
* Transition presets
|
|
*/
|
|
export { CardStyleInterpolators, HeaderStyleInterpolators, TransitionPresets };
|
|
|
|
/**
|
|
* Utilities
|
|
*/
|
|
|
|
export { default as StackGestureContext } from './utils/StackGestureContext';
|
|
|
|
/**
|
|
* Types
|
|
*/
|
|
export {
|
|
NavigationStackState,
|
|
NavigationStackProp,
|
|
NavigationStackOptions,
|
|
NavigationStackConfig,
|
|
NavigationStackScreenComponent,
|
|
NavigationStackScreenProps,
|
|
} from './types';
|