-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
80 lines (72 loc) · 2.11 KB
/
Copy pathApp.js
File metadata and controls
80 lines (72 loc) · 2.11 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
73
74
75
76
77
78
79
80
import React, { Component, useState } from 'react';
import { StyleSheet, Text, View, SafeAreaView, Image,ScrollView, Button} from 'react-native';
import {colors} from "./src/constants";
import Keyboard from "./src/components/Keyboard";
import { NavigationContainer } from '@react-navigation/native';
import { createStackNavigator } from '@react-navigation/stack';
import HomeScreen from './HomeScreen';
import Funcwordlescreen from './AboutScreen';
import SightRead from './sightread';
import SignInScreen from './src/screens/SignInScreens/SignInScreen'
import SignUpScreen from './src/screens/SignUpScreens/SignUpScreen';
import ConfirmEmailScreen from './src/screens/ConfirmEmailScreens';
import ForgotPasswordScreen from './src/screens/ForgotPasswordScreens/ForgotPasswordScreen';
import NewPasswordScreen from './src/screens/NewPasswordScreens/NewPasswordScreen';
import Navigation from './src/navigation';
import Amplify from 'aws-amplify'
import config from './src/aws-exports'
import { LogBox } from 'react-native';
Amplify.configure(config)
LogBox.ignoreLogs(['Warning: source.uri should not be an empty string ']);
LogBox.ignoreLogs(['Warning: source.uri should not be an empty string ']);
LogBox.ignoreAllLogs()
const App = () => {
//Auth.signOut()
return (
<SafeAreaView style = {styles.root}>
<Navigation/>
<Text> testing merge effects </Text>
</SafeAreaView>
);
}
const styles = StyleSheet.create({
root: {
backgroundColor:"#F9FBFC",
flex: 1
}
})
const signUpConfig = {
header: "My Customized Sign Up",
hideAllDefaults: true,
signUpFields: [
{
label: "Full name",
key: "name",
required: true,
displayOrder: 1,
type: "string",
},
{
label: "Email",
key: "email",
required: true,
displayOrder: 2,
type: "string",
},
{
label: "Username",
key: "preferred_username",
required: true,
displayOrder: 3,
type: "string",
},
{
label: "Password",
key: "password",
required: true,
displayOrder: 4,
type: "password",
},
],
};
export default App