-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProduto.js
52 lines (50 loc) · 1.41 KB
/
Produto.js
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
import React from "react";
import { View, Text, Image, StyleSheet, TouchableOpacity } from "react-native";
import Ionicons from "react-native-vector-icons/Ionicons";
import MCButton from "../../components/MCButton";
import MCHeader from "../../components/MCHeader";
export default function Produto() {
return (
<View style={styles.container}>
<MCHeader>
<TouchableOpacity>
<Ionicons style={styles.icone1} name="arrow-back-outline" size={35} color={"#fff"} />
</TouchableOpacity>
</MCHeader>
<Image style={styles.prod} source={require('@expo/img/teste.png')} />
<Text style={styles.nome}>Produto para teste</Text>
<Text style={styles.desc}>Produto feito para realizar teste em aplicativos desenvolvidos para publicar produtos na mundo da Internet</Text>
<MCButton children={"Ver produto"}/>
</View>
);
}
const styles = StyleSheet.create({
container: {
backgroundColor: "#f3f3f3",
flex: 1,
},
icone1: {
marginRight: '92%'
},
prod: {
alignSelf: 'center',
marginTop: '10%',
borderRadius:10,
width:350,
height:350,
},
nome: {
fontSize: 30,
marginTop: '2%',
fontWeight: 'bold',
textAlign: 'center',
},
desc: {
fontSize: 16,
width: '90%',
marginTop: '5%',
marginBottom: '8%',
textAlign: 'center',
alignSelf: 'center',
},
});