-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
73 lines (67 loc) · 1.63 KB
/
App.tsx
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
73
import { StatusBar } from 'expo-status-bar';
import React from 'react';
import { SafeAreaProvider } from 'react-native-safe-area-context';
import { useFonts, Montserrat_400Regular, Montserrat_700Bold } from '@expo-google-fonts/montserrat';
import { withAuthenticator } from 'aws-amplify-react-native';
import useCachedResources from './hooks/useCachedResources';
import useColorScheme from './hooks/useColorScheme';
import Navigation from './navigation';
import Amplify from 'aws-amplify'
import config from './aws-exports'
Amplify.configure(config)
function App() {
const isLoadingComplete = useCachedResources();
const colorScheme = useColorScheme();
const [fontsLoaded] = useFonts({
Montserrat_400Regular,
Montserrat_700Bold
});
if (!isLoadingComplete || !fontsLoaded) {
return null;
} else {
return (
<SafeAreaProvider>
<Navigation colorScheme={colorScheme} />
<StatusBar />
</SafeAreaProvider>
);
}
}
const signUpConfig = {
header: 'Sign Up',
hideAllDefaults: true,
defaultCountryCode: '1',
signUpFields: [
{
label: 'Full Name',
key: 'name',
required: true,
displayOrder: 1,
type: 'string'
},
{
label: 'Email',
key: 'username',
required: true,
displayOrder: 2,
type: 'email'
},
{
label: 'Phone Number',
key: 'phone_number',
required: true,
displayOrder: 3,
type: 'string'
},
{
label: 'Password',
key: 'password',
required: true,
displayOrder: 4,
type: 'password'
},
]
};
export default withAuthenticator(App, {
signUpConfig
});