Files
react-navigation/example
Satyajit Sahoo 95b044ecf9 feat: add devtools package (#8436)
The `devtools` package extracts the redux devtools extension integration to a separate package. In future we can add more tools such as flipper integration to this package.

Usage:

```js
import * as React from 'react';
import { NavigationContainer } from '@react-navigation/native';
import { useReduxDevToolsExtension } from '@react-navigation/devtools';

export default function App() {
  const navigationRef = React.useRef();

  useReduxDevToolsExtension(navigationRef);

  return (
    <NavigationContainer ref={navigationRef}>{/* ... */}</NavigationContainer>
  );
}
```
2020-06-15 13:53:17 +02:00
..
2020-02-14 18:32:53 +01:00
2020-01-30 05:03:31 +01:00
2020-05-26 16:07:47 +02:00
2020-05-27 19:55:37 +02:00
2020-06-15 13:53:17 +02:00
2019-12-09 15:20:28 +01:00
2020-05-26 16:07:47 +02:00
2020-03-22 23:58:06 +01:00
2020-05-20 13:27:29 +02:00
2020-01-10 13:12:32 +01:00
2020-05-23 17:33:34 +02:00
2020-06-12 18:37:40 +02:00

Example for React Navigation

If you want to run the example from the repo,

  • Clone the repository and run yarn in the project root
  • Run yarn example start to start the packager
  • Follow the instructions to open it with the Expo app

You can also run the currently published app on Expo on your Android device or iOS simulator or the web app in your browser.