mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-02-13 17:47:32 +08:00
34 lines
919 B
TypeScript
34 lines
919 B
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';
|