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 Component2 = <Text> component 2</Text>;
return (
<View>
<StepModal stepComponents={[Component1, Component2]} />
</View>
);
}
}
- Manoj Mohan - Initial work - manoj-makkuboy
- Mukul Mahajan Singraur - Add Swipe guesture - rammmukul
- Saurabh Ramesh Kacholiya - UI fixes - saurabhkacholiya
This project is licensed under the MIT License - see the LICENSE.md file for details