2.0.0-alpha.19 • Published 4 years ago

react-router-navigation-ac v2.0.0-alpha.19

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

react-router-navigation

Declarative routing for React Native based on react-router and react-navigation.

How to use

Install:

$ yarn add react-router react-router-native react-router-navigation

And then, enjoy it:

import * as React from 'react'
import { Text } from 'react-native'
import { NativeRouter, Link } from 'react-router-native'
import { Navigation, Card } from 'react-router-navigation'

const App = () => (
  <NativeRouter>
    <Navigation>
      <Card
        exact
        path="/"
        render={() => (
          <Link to="/hello">
            <Text>Press it</Text>
          </Link>
        )}
      />
      <Card
        path="/hello"
        render={() => <Text>Hello</Text>}
      />
    </Navigation>
  </NativeRouter>
)

Questions

If you have any questions, feel free to get in touch on Twitter @Leo_LeBras or open an issue.

Credits

React Router Navigation is built and maintained by Léo Le Bras.