React Native Modalfy
v2.x
v2.x
  • Getting started
  • Installation
  • Guides
    • Creating a stack
    • Opening & closing
    • Passing params
    • Type checking with TypeScript
    • Subscribing to events
    • Using outside React
    • Upgrading from v1.x
  • API Reference
    • Types
      • ModalStackConfig
      • ModalOptions
      • ModalProp
      • ModalComponentProp
      • ModalComponentWithOptions
    • ModalProvider
    • createModalStack
    • useModal
    • withModal
    • modalfy
  • Blog
    • Announcing Modalfy v2
    • Stacks on stacks in React Native
    • Introducing a Modal Citizen
  • Others
    • Help
    • Contributing
    • Changelog
    • Github
Powered by GitBook
On this page

Was this helpful?

  1. API Reference

ModalProvider

<ModalProvider> is the component you're going to use to wrap your whole application, so it'll be able to display your modals on top of everything else, using React Context API.

Note: ModalProvider wraps its children inside a View component so feel free to put as many siblings as you want inside of it (no need to wrap them inside a View/Fragment before passing the content to ModalProvider).

./App.js
import React from 'react'
import { ModalProvider, createModalStack } from 'react-native-modalfy'

import Navigation from './navigation'
import { ErrorModal } from './components/Modals'

const modalConfig = { ErrorModal }
const defaultOptions = { backdropOpacity: 0.6 }

const stack = createModalStack(modalConfig, defaultOptions)

const App = () => (
  <ModalProvider stack={stack}>
    <Navigation />
  </ModalProvider>
)


export default App
PreviousModalComponentWithOptionsNextcreateModalStack

Last updated 5 years ago

Was this helpful?

https://github.com/colorfy-software/react-native-modalfy/blob/master/lib/ModalProvider.tsx