Giter Site home page Giter Site logo

react-native-modal's Introduction

react-native-modal

A <Modal> component for react-native. This is still very much a work in progress and only handles the simplest of cases, ideas and contributions are very welcome.

Warning: A Modal component is now built into React Native as of v0.10-rc, so this library is no longer necessary. Check out this commit on facebook/react-native for more information!

Demo

Add it to your project

  1. Run npm install react-native-modal --save
  2. Open your project in XCode, right click on Libraries and click Add Files to "Your Project Name" (Screenshot) then choose the RNModal.xcodeproj (Screenshot) .
  3. Add libRNModal.a to Build Phases -> Link Binary With Libraries (Screenshot).
  4. var Modal = require('react-native-modal');
  5. At the bottom of your app, add the <Modal> element and use its isVisible prop to toggle visibility. It needs to be at the bottom so that it appears above all other components when it is visible. If you use the forceToFront prop, then the position in the component tree does not matter at all - put it wherever you like.

Usage

'use strict';

var React = require('react-native');
var Modal = require('react-native-modal');
var { AppRegistry, StyleSheet, View, Text } = React;

class App extends React.Component {
  constructor() {
    this.state = {
      isModalOpen: false
    };
  }

  openModal() {
    this.setState({isModalOpen: true});
  }

  closeModal() {
    this.setState({isModalOpen: false});
  }

  render() {
    return (
      <View style={styles.page}>
        <Text onPress={() => this.openModal()}>
          Open Modal.
        </Text>
        <Modal isVisible={this.state.isModalOpen} onClose={() => this.closeModal()}>
          <Text>Hello world!</Text>
        </Modal>
      </View>
    );
  }
}

var styles = StyleSheet.create({
  page: {
    flex: 1,
    position: 'absolute',
    bottom: 0,
    left: 0,
    right: 0,
    top: 0
  }
});

AppRegistry.registerComponent('App', () => App);

If you would prefer to not have to implement openModal() and closeModal(), then you can use Modal.Mixin, then you can replace the definition of App above with:

var App = React.createClass({
  mixins: [Modal.Mixin],

  render() {
    return (
      <View style={styles.page}>
        <Text onPress={() => this.openModal()}>
          Open Modal.
        </Text>
        <Modal backdropType="blur" isVisible={this.state.isModalOpen} onClose={() => this.closeModal()}>
          <Text>Hello world!</Text>
        </Modal>
      </View>
    );
  }
}

Also take a look on react-native-login for an example usage.

Props

Component accepts several self-descriptive properties:

  • forceToFront (Bool) - if true, the modal will use a new UIWindow that will appear above NavigatorIOS and the status bar, but not alerts. Demo here.
  • hideCloseButton (Bool)
  • backdropType (String) plain, none, or blur. Default is plain.
  • backdropBlur (String) If backdropType is blur, this can be either dark, light, or extra-light. Default is light. (thanks @kureev for react-native-blur!) Demo here.
  • containerPointerEvents (String) box-none, none, box-only, auto. Default is auto. Set to box-none to trigger the onPressBackdrop callback when the modal body is touched. See pointerEvents.
  • isVisible (Bool)
  • onClose (Function)
  • onPressBackdrop (Function) - callback to be fired when the user taps on the backdrop
  • customCloseButton (React Component)
  • customShowHandler (Function) - uses a react-tween-state wrapper API in order to show the modal. See example
  • customHideHandler (Function) - uses a react-tween-state wrapper API in order to hide the modal. See example

MIT Licensed

react-native-modal's People

Contributors

almost avatar auser avatar booxood avatar brentvatne avatar grabbou avatar lwansbrough avatar marcopolo avatar mbrgm avatar pgmemk avatar premasagar avatar readingsteiner avatar rpastorelle avatar voronianski avatar yorkie avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.