mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-01-12 22:51:18 +08:00
- @react-navigation/bottom-tabs@6.0.0-next.4 - @react-navigation/core@6.0.0-next.2 - @react-navigation/devtools@6.0.0-next.2 - @react-navigation/drawer@6.0.0-next.4 - @react-navigation/elements@1.0.0-next.4 - @react-navigation/material-bottom-tabs@6.0.0-next.2 - @react-navigation/material-top-tabs@6.0.0-next.2 - @react-navigation/native@6.0.0-next.2 - @react-navigation/routers@6.0.0-next.2 - @react-navigation/stack@6.0.0-next.9
@react-navigation/core
Core utilities for building navigators independent of the platform.
Installation
Open a Terminal in your project's folder and run,
yarn add @react-navigation/core
Usage
A basic custom navigator bundling a router and a view looks like this:
import { createNavigatorFactory, useNavigationBuilder } from '@react-navigation/core';
import { StackRouter } from '@react-navigation/routers';
function StackNavigator({ initialRouteName, children, ...rest }) {
const { state, navigation, descriptors } = useNavigationBuilder(StackRouter, {
initialRouteName,
children,
});
return (
<StackView
state={state}
navigation={navigation}
descriptors={descriptors}
{...rest}
/>
);
}
export default createNavigatorFactory(StackNavigator);