1.0.0 • Published 6 years ago

react-native-easy-modal v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

react-native-easy-modal

A simple component for React-native, support Android and IOS

Install

npm install react-native-easy-modal@latest --save

Usage example

<Button onPress={() => this.refs.modal1.toggleVisible()}>Basic modal</Button>

<Modalbox ref="modal1" modalVisible={this.state.buyModalVisible}>
    <Text>test</Text>
</Modalbox>