Open mozamonkey opened 6 years ago
How can I trigger this view when I tap a button which takes me to this screen?
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 && }
How can I trigger this view when I tap a button which takes me to this screen?