-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathPostSignup.js
More file actions
40 lines (33 loc) · 1.03 KB
/
Copy pathPostSignup.js
File metadata and controls
40 lines (33 loc) · 1.03 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
import { NavigationContainer } from "@react-navigation/native";
import React, { Component } from "react";
import { TouchableWithoutFeedback, Keyboard } from "react-native";
import { View, Text, TextInput, StyleSheet, Image, TouchableOpacity } from "react-native";
const PostSignup = ({navigation, route}) => {
return(
<View style={styles.container}>
<Text style={styles.title}>Thank you for signing up!</Text>
<Text style={styles.subtitle}>You will recieve an email from us once your profile has been verified!</Text>
</View>
);
}
const styles = StyleSheet.create({
container: {
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
flexDirection: 'column',
backgroundColor: '#D1EBB1',
width: '100%',
height: '100%'
},
title: {
fontSize: 25,
margin: 20,
},
subtitle: {
textAlign: 'center',
fontSize: 18,
margin: 20
},
});
export default PostSignup;