navigation-react-native
TypeScript icon, indicating that this package has built-in type declarations

9.31.1 • Public • Published

Hello World

import { StateNavigator } from 'navigation';
import { NavigationHandler, NavigationContext } from 'navigation-react';
import { NavigationStack,. Scene } from 'navigation-react-native';

const stateNavigator = new StateNavigator([
  { key: 'hello' },
  { key: 'world', trackCrumbTrail: true },
]);

const Hello = () => {
  const { stateNavigator } = useContext(NavigationContext);
  return (
    <Button
      title="Hello"
      onPress={() => {
        stateNavigator.navigate('world', { size: 20 });
      }} />
  );
};

const World = () => {
  const { data } = useContext(NavigationContext);
  return <Text style={{ fontSize: data.size }}>World</Text>;
};

const App = () => (
  <NavigationHandler stateNavigator={stateNavigator}>
    <NavigationStack>
      <Scene stateKey="hello"><Hello /></Scene>
      <Scene stateKey="world"><World /></Scene>
    </NavigationStack>
  </NavigationHandler>
);

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
8.10.0-wip.00wip
9.31.114latest

Version History

VersionDownloads (Last 7 Days)Published
9.31.114
9.31.03
9.30.32
9.30.29
9.30.11
9.30.00
9.29.02
9.28.01
9.27.00
9.26.05
9.25.00
9.24.00
9.23.00
9.22.40
9.22.30
9.22.21
9.22.12
9.22.00
9.21.29
9.21.10
9.21.01
9.20.10
9.20.00
9.19.00
9.18.00
9.17.02
9.16.041
9.15.00
9.14.00
9.13.00
9.12.08
9.11.00
9.10.01
9.9.00
9.8.01
9.7.03
9.6.00
9.5.01
9.4.21
9.4.10
9.4.01
9.3.10
9.3.00
9.2.40
9.2.30
9.2.20
9.2.10
9.2.00
9.1.00
9.0.00
8.14.21
8.14.10
8.14.00
8.13.11
8.13.01
8.12.00
8.11.00
8.10.0-wip.00
8.10.11
8.10.044
8.9.31
8.9.21
8.9.1-wip.00
8.9.10
8.9.00
8.8.2-wip.11
8.8.2-wip.00
8.8.20
8.8.11
8.8.00
8.7.30
8.7.20
8.7.13
8.7.00
8.6.00
8.5.00
8.4.30
8.4.20
8.4.10
8.4.00
8.3.00
8.2.00
8.1.10
8.1.01
8.0.00
7.5.00
7.4.21
7.4.11
7.4.00
7.3.20
7.3.10
7.3.00
7.2.10
7.2.00
7.1.00
7.0.20
7.0.10
7.0.00
6.25.10
6.25.00
6.24.00
6.23.11
6.23.00
6.22.10
6.22.01
6.21.00
6.20.01
6.19.01
6.18.00
6.17.02
6.16.01
6.15.01
6.14.00
6.13.01
6.12.00
6.11.01
6.10.21
6.10.10
6.10.00
6.9.11
6.9.00
6.8.00
6.7.10
6.7.00
6.6.00
6.5.10
6.5.00
6.4.10
6.4.00
6.3.00
6.2.01
6.1.21
6.1.10
6.1.00
6.0.01
5.7.00
5.6.20
5.6.10
5.6.01
5.5.02
5.4.10
5.4.00
5.3.10
5.3.02
5.2.10
5.2.01
5.1.00
5.0.01
4.0.10
4.0.00
3.7.00
3.6.00
3.5.00
3.4.00
3.3.00
3.2.01
3.1.10
3.1.01
3.0.00
2.0.00
1.0.01

Package Sidebar

Install

npm i navigation-react-native

Weekly Downloads

192

Version

9.31.1

License

Apache-2.0

Unpacked Size

1.23 MB

Total Files

340

Last publish

Collaborators

  • grahammendick