Skip to content

kaoDev/react-router-navigation

 
 

Repository files navigation

react-router-navigation

Build Status npm version Am I a cool kid ? styled with prettier

react-router-navigation is still a work in progress. That means it's extremely likely that you'll encounter issues. Always consider it.

react-router-navigation provides tools to navigate between multiple screens with navigators or tab views. This library is based on react-router, react-navigation, and react-native-tab-view.

Highlights

  • Just an add-on to react-router
  • Declarative composability
  • Allow you to call transitions anywhere in your code with simple components
  • Dynamic Routing
  • URL Driven Development
  • Easy-to-use navigation solution using react-navigation
  • Tab Bar Support using react-native-tab-view
  • Cross-platform
  • First class deep linking support
  • Nested Navigators
  • Fully typed with Flow
  • TypeScript support

How to use

Install:

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

And then, enjoy it:

import 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>
)

Guide

To learn how the library work, head to this introduction written by @CharlesMangwa : Thousand ways to navigate in React-Native

Docs

Contributing

Want to hack on react-router-navigation? Awesome! We welcome contributions from anyone and everyone. 🚀

While developing, you can run examples app to test your changes.

Make sure the tests still pass, and your code passes Flow and ESLint. Run the following to verify:

$ yarn run bootstrap
$ yarn test

Remember to add tests for your change if possible.

Questions

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

Thanks

react-router-navigation is based on React Router. Thanks to Ryan Florence @ryanflorence, Michael Jackson @mjackson and all the contributors for their work on react-router and history.

Special thanks to @ericvicenti, @skevy, @satya164 and @grabbou for their work on react-navigation and @satya164 for his work on react-native-tab-view.

About

⛵️ A complete navigation library for React Native and React Router

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Makefile 100.0%