Skip to content

manoj-makkuboy/react-native-step-modal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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