@qeepsake/react-navigation-overlay
TypeScript icon, indicating that this package has built-in type declarations

3.0.0 • Public • Published

React Navigation Overlay

This library attempts to add support for "Overlays" to React Navigation similar to the showOverlay API in React Native Navigation.

Install

npm i @qeepsake/react-navigation-overlay

Usage

Add the ReactNavigationOverlay component to the top of your tree inside your NavigationContainer. This will allow the Overlays to be displayed.

import { ReactNavigationOverlay } from "react-navigation-overlay";

<NavigationContainer>
  ...
  <ReactNavigationOverlay />
</NavigationContainer>;

Display an overlay by using the Overlay.show() method, and passing your component and any props.

Overlay.show(MyFirstOverlay, { title: "..." })

...

const MyFirstOverlay = ({ title }) => {
    return ...;
}

Authors

License

This project is licensed under the MIT License

Package Sidebar

Install

npm i @qeepsake/react-navigation-overlay

Weekly Downloads

213

Version

3.0.0

License

MIT

Unpacked Size

32.7 kB

Total Files

21

Last publish

Collaborators

  • rodriigovieira
  • lukebrandonfarrell