React Native Touchables

AppName: Test Component Name: App.js ------------------------------------------------------------------------------------------ import React , { Component } from 'react' import { View , Alert , StyleSheet , TouchableHighlight , Text , TouchableOpacity , TouchableNativeFeedback , SafeAreaView } from 'react-native' ; class App extends Component { onPressButton () { Alert . alert ( 'You Clicked On The Button' ) } render () { return ( < SafeAreaView > < View style = { StyleSheet . containerMAIN } > < TouchableHighlight onPress = {this . onPressButton } underlayColor = "white" > < View style = { styles . buttonALL } > < Text style = { styles . buttonTextALL } > TouchableHighlight </ Text > </ View > </ TouchableHighlight > < TouchableOpacity onPress = {this . onPressButton } > < View style ...