-
Notifications
You must be signed in to change notification settings - Fork 3
/
Statistics.tsx
51 lines (48 loc) · 1.02 KB
/
Statistics.tsx
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
import React, { useState } from 'react';
import { View, Text, TextInput, TouchableOpacity, StyleSheet} from 'react-native';
const Statistics = () => {
return (
<View style={styles.view}>
<Text style={styles.title}>통계 화면</Text>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
},
view: {
position: 'relative',
backgroundColor: '#ffffff',
justifyContent: 'center',
alignItems: 'center',
flex:1,
},
title: {
fontSize: 20,
fontWeight: 'bold',
marginBottom: 10,
},
input: {
width: '80%',
height: 40,
borderWidth: 1,
borderColor: 'gray',
padding: 10,
marginBottom: 20,
},
button: {
position: 'absolute',
bottom: 20,
width: '90%',
alignItems: 'center',
backgroundColor: '#EFEFEF',
padding: 10,
borderRadius: 5,
},
buttonText: {
color: '#000000',
fontSize: 16,
},
});
export default Statistics;