cdvntr / react-native-confetti

Raining confetti made with react native animations
MIT License
221 stars 55 forks source link

Trigger this view when you tap a button? #19

Open mozamonkey opened 6 years ago

mozamonkey commented 6 years ago

How can I trigger this view when I tap a button which takes me to this screen?

andelh commented 5 years ago

Try using a state Boolean to show and hide the confetti view

eg. onPress={()=> this.setState({showConfetti : true } )}

& for the confetti view: { this.state.showConfetti && }