Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 925 Bytes

README.md

File metadata and controls

38 lines (27 loc) · 925 Bytes

react-native-step-modal

React Native modal with step indicator

installation

npm install react-native-step-modal

usage

import StepModal from "react-native-step-modal";

class Login extends Component {

  render() {
    let Component1 =  <Text> component 1</Text>;
    let Component2 =  <Text> component 2</Text>;
    
    return (
      <View>
         <StepModal stepComponents={[Component1, Component2]} />
      </View>
    );
  }
}

demo

Authors

License

This project is licensed under the MIT License - see the LICENSE.md file for details