-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
72 lines (66 loc) · 1.92 KB
/
Copy pathApp.js
File metadata and controls
72 lines (66 loc) · 1.92 KB
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
67
68
69
70
71
72
import { StatusBar } from 'expo-status-bar';
import React, { useState, useEffect } from 'react';
import { auth } from './firebase';
import { NavigationContainer, DefaultTheme } from '@react-navigation/native';
import { createStackNavigator } from '@react-navigation/stack';
import LoginScreen from './screens/sessions/LoginScreen';
import RegisterScreen from './screens/sessions/RegisterScreen'
const Stack = createStackNavigator();
export default function App() {
const [signedIn, setsignedIn] = useState(false);
const forFade = ({ current }) => ({
cardStyle: {
opacity: current.progress,
backgroundColor: 'transparent',
},
});
auth.onAuthStateChanged((use) => {
if (user) {
setsignedIn(true);
} else {
setsignedIn(false);
}
});
return (
<NavigationContainer theme={DefaultTheme}>
{signedIn
? (
<Text>Signed In</Text>
) : (
<>
<StatusBar style="light" />
<Stack.Navigator
mode="card"
screenOptions={{}}
>
<Stack.Screen
name="LoginScreen"
component={LoginScreen}
options={{
title: 'LoginScreen',
cardStyleInterpolator: forFade,
headerStyle: {
backgroundColor: '#29434e',
borderBottomColor: '#29434e',
},
headerTintColor: '#fff'
}}/>
<Stack.Screen
name="RegisterScreen"
component={RegisterScreen}
options={{
title: 'RegisterScreen',
cardStyleInterpolator: forFade,
headerStyle: {
backgroundColor: '#29434e',
borderBottomColor: '#29434e',
},
headerTintColor: '#fff'
}}/>
</Stack.Navigator>
</>
)
}
</NavigationContainer>
);
}