-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
92 lines (83 loc) · 2.04 KB
/
App.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
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
81
82
83
84
85
86
87
88
89
90
91
92
import React, { useState } from 'react';
import { View, Text, StyleSheet, TextInput, TouchableOpacity, Image } from 'react-native';
export default function App() {
const [peso, setPeso] = useState('');
const [altura, setAltura] = useState('');
function handleSubmit() {
const alt = altura / 100;
const imc = peso / (alt * alt);
if (imc < 18.6) {
alert('Você está abaixo do peso!' + imc.toFixed(2));
} else if (imc >= 18.6 && imc < 24.9) {
alert('Peso ideal! ' + imc.toFixed(2));
} else if (imc >= 24.9 && imc < 34.9) {
alert('Você está levemente acima do peso!' + imc.toFixed(2));
}
setPeso('');
setAltura('');
}
return (
<View style={styles.container}>
<Image style={styles.imagem} source={require('./assets/img/nv.png')} />
<Text style={styles.title}> Calcule seu IMC</Text>
<TextInput
style={styles.input}
value={peso}
onChangeText={(peso) => setPeso(peso)}
placeholder="Peso(Kg)"
keyboardType="numeric"
color='black'
/>
<TextInput
style={styles.input}
value={altura}
onChangeText={(altura) => setAltura(altura)}
placeholder="Altura (cm)"
keyboardType="numeric"
color='black'
/>
<TouchableOpacity
style={styles.button}
onPress={handleSubmit}
>
<Text style={styles.buttonText}> Calcule </Text>
</TouchableOpacity>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor:'#D8D8D8'
},
title: {
textAlign: 'center',
marginBottom:30,
fontSize: 30,
},
input: {
backgroundColor: '#FFF',
borderRadius: 10,
margin: 15,
padding: 10,
fontSize: 23,
},
button: {
justifyContent: 'center',
alignItems: 'center',
margin: 15,
backgroundColor: '#5858FA',
padding: 10,
},
buttonText: {
color: '#FFF',
fontSize: 25,
},
imagem: {
margin:80,
width: 250,
height: 250,
marginVertical:70,
alignItems: 'center',
}
});