UNPKG

@react-navigation/bottom-tabs

Version:

Bottom tab navigator following iOS design guidelines

27 lines 1.21 kB
import * as SceneStyleInterpolators from './TransitionConfigs/SceneStyleInterpolators.js'; import * as TransitionPresets from './TransitionConfigs/TransitionPresets.js'; import * as TransitionSpecs from './TransitionConfigs/TransitionSpecs.js'; /** * Transition Presets */ export { SceneStyleInterpolators, TransitionPresets, TransitionSpecs }; /** * Navigators */ export { type BottomTabTypeBag, createBottomTabNavigator, createBottomTabScreen, } from './navigators/createBottomTabNavigator.js'; /** * Views */ export { BottomTabBar } from './views/BottomTabBar.js'; export { BottomTabView } from './views/BottomTabView.js'; /** * Utilities */ export { BottomTabBarHeightCallbackContext } from './utils/BottomTabBarHeightCallbackContext.js'; export { BottomTabBarHeightContext } from './utils/BottomTabBarHeightContext.js'; export { useBottomTabBarHeight } from './utils/useBottomTabBarHeight.js'; /** * Types */ export type { BottomTabBarButtonProps, BottomTabBarProps, BottomTabHeaderProps, BottomTabNavigationEventMap, BottomTabNavigationOptions, BottomTabNavigationProp, BottomTabNavigatorProps, BottomTabOptionsArgs, BottomTabScreenProps, } from './types.js'; //# sourceMappingURL=index.d.ts.map