You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
797 B
31 lines
797 B
/**
|
|
* Navigators
|
|
*/
|
|
export { default as createBottomTabNavigator } from './navigators/createBottomTabNavigator';
|
|
|
|
/**
|
|
* Views
|
|
*/
|
|
export { default as BottomTabBar } from './views/BottomTabBar';
|
|
export { default as BottomTabView } from './views/BottomTabView';
|
|
|
|
/**
|
|
* Utilities
|
|
*/
|
|
export { default as BottomTabBarHeightCallbackContext } from './utils/BottomTabBarHeightCallbackContext';
|
|
export { default as BottomTabBarHeightContext } from './utils/BottomTabBarHeightContext';
|
|
export { default as useBottomTabBarHeight } from './utils/useBottomTabBarHeight';
|
|
|
|
/**
|
|
* Types
|
|
*/
|
|
export type {
|
|
BottomTabBarButtonProps,
|
|
BottomTabBarProps,
|
|
BottomTabHeaderProps,
|
|
BottomTabNavigationEventMap,
|
|
BottomTabNavigationOptions,
|
|
BottomTabNavigationProp,
|
|
BottomTabScreenProps,
|
|
} from './types';
|