I am trying to call multiple functions when I click onPress using TouchableOpacity
For example:
functionOne(){
// do something
}
functionTwo(){
// do someting
}
<TouchableHighlight onPress{() => this.functionOne()}/>
What if I want to call two functions when onPress is clicked? Is there a way I could call multiple functions?