functionOne(){ // do something } functionTwo(){ // do something } functionCombined() { this.functionOne(); this.functionTwo(); } <TouchableHighlight onPress={() => this.functionCombined()}/>