react-native-step-modal
Version:
React native modal with step indicator
37 lines (25 loc) • 726 B
Markdown
React Native modal with step indicator
`npm install react-native-step-modal`
```
import StepModal from "react-native-step-modal";
class Login extends Component {
render() {
let Component1 = <Text> component 1</Text>;
let Componet2 = <Text> component 2</Text>;
return (
<View>
<StepModal stepComponents={[Component1, Component2]} />
</View>
);
}
}
```
<img src="demo.gif" width="200" height="400" />
* **Manoj Mohan** - *Initial work* - [manoj-makkuboy](https://github.com/manoj-makkuboy)
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details