-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSignout.js
66 lines (55 loc) · 1.43 KB
/
Signout.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import React from "react";
import { StyleSheet, Alert, View, ImageBackground, Image, TextInput, Button, TouchableOpacity, } from "react-native";
import LoginStack from '../routes/LoginStack';
import firebase from "../assets/DatabaseConfig" ;
import auth from "@react-native-firebase/auth" ;
import database from "@react-native-firebase/database" ;
export default function Shopping({navigation}) {
function onSignoutPress() {
console.log("meow")
Alert.alert(
"Logout",
"Are you sure you want to logout?"
[
{
text: "Yes",
onPress: ()=>{
firebase.auth().signOut()
.then(() => {
navigation.navigate("LoginStack")
})
.catch(function(error) {
// console.log(error)
alert(error)
})
}
},
{
text: "No",
onPress: ()=> {console.log("NO")},
}
], {cancelable: false}
)
}
return (
<View style={styles.Screen}>
<Button title="signout" onPress={onSignoutPress}> </Button>
</View>
);
}
const styles = StyleSheet.create({
// confirmbutton: {
// flexDirection: 'row',
// // width: "30%",
// padding: 50,
// alignItems: 'center',
// justifyContent: 'center',
// },
Screen: {
// flexDirection: "column",
height: '100%',
padding: '10%',
backgroundColor: '#d3d3d3',
// flex: '20%',
},
});