Я только что начал React-Native. Но здесь у меня не работает TouchableOpacity. Пожалуйста, проверьте код
import React, { Component } from 'react'
import { View, Text , StyleSheet, TouchableOpacity, TouchableNativeFeedback } from 'react-native'
import firebase from 'firebase'
class Article extends Component {
handleOnPress = () => {
firebase.auth().signOut();
}
render(){
return (
<View style={styles.container}>
<View >
<Text>You are logged in </Text>
<TouchableOpacity style={styles.buttonContainer}
onPress={this.handleOnPress}>
<Text>Log Out</Text>
</TouchableOpacity>
</View>
</View>
)}
}
export default Article
const styles = StyleSheet.create({
container:{
flex:1,
justifyContent:'center',
alignItems:'center',
backgroundColor:'red'
},
button:{
color:'white',
justifyContent:'center',
alignItems:'center',
textAlign:'center',
fontWeight:'bold',
fontSize:25
},
buttonContainer:{
backgroundColor:'green',
color:'white',
padding:10,
borderRadius:8,
width:300,
height:50,
textAlign:'center',
padding:10,
alignSelf:'center',
marginTop:50
}
}
)