How to use the react-native-modal.Item function in react-native-modal

To help you get started, we’ve selected a few react-native-modal examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github EdgeApp / edge-react-gui / src / modules / UI / components / PasswordReminderModal / components / Modal.ui.js View on Github external
export type DescriptionState = {}

Modal.Description = class Description extends Component {
  render () {
    return 
  }
}

// ITEM /////////////////////////////////////////////////////////////////////////////
export type ItemProps = {
  children: Node,
  style?: Object
}
export type ItemState = {}

Modal.Item = class Item extends Component {
  render () {
    return 
  }
}

// BODY /////////////////////////////////////////////////////////////////////////////
export type BodyProps = {
  children: Node,
  style?: Object
}
export type BodyState = {}

Modal.Body = class Body extends Component {
  render () {
    return 
  }