-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAboutUsScreen.js
More file actions
64 lines (60 loc) · 1.7 KB
/
AboutUsScreen.js
File metadata and controls
64 lines (60 loc) · 1.7 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
// AboutUsScreen.js
import React from 'react';
import { View, Text, StyleSheet, TouchableOpacity, Linking } from 'react-native';
import { AntDesign } from '@expo/vector-icons';
const AboutUsScreen = () => {
const sendEmail = () => {
Linking.openURL('mailto:Mateusp7441@gmail.com?subject=Feedback%20App');
};
return (
<View style={styles.container}>
<AntDesign name="info" size={80} color="#3498db" />
<Text style={styles.title}>Sobre Nós</Text>
<Text style={styles.description}>
Bem-vindo ao nosso aplicativo! Somos uma equipe dedicada a proporcionar as melhores
experiências para nossos usuários. Se você tiver alguma dúvida, sugestão ou feedback,
entre em contato conosco.
</Text>
<TouchableOpacity style={styles.emailButton} onPress={sendEmail}>
<AntDesign name="mail" size={24} color="#fff" />
<Text style={styles.buttonText}>Enviar Email</Text>
</TouchableOpacity>
</View>
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
padding: 20,
},
title: {
fontSize: 24,
fontWeight: 'bold',
textAlign: 'center',
color: '#3498db',
marginVertical: 20,
},
description: {
fontSize: 16,
color: '#333',
textAlign: 'center',
marginBottom: 20,
},
emailButton: {
flexDirection: 'row',
backgroundColor: '#3498db',
padding: 10,
borderRadius: 8,
alignItems: 'center',
justifyContent: 'center',
},
buttonText: {
color: '#fff',
marginLeft: 10,
fontSize: 16,
},
});
export default AboutUsScreen;