-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.js
74 lines (73 loc) · 1.57 KB
/
styles.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
import {StyleSheet, Dimensions} from 'react-native'
export const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
},
mainContainer: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
// width: Dimensions.get('window').width,
// height: Dimensions.get('window').height,
},
textInput: {
margin: 10,
marginEnd: 20,
marginStart: 20,
padding: 10,
height:45,
width: '60%',
borderWidth: .5,
backgroundColor: '#F5FCFF',
},
#TextInput: {
margin: 10,
marginEnd: 20,
marginStart: 20,
padding: 10,
height:45,
width: '80%',
borderWidth: .5,
backgroundColor: '#F5FCFF',
},
title: {
color: '#222222',
fontSize: 16,
},
button: {
width: '60%',
height:45,
justifyContent: 'center',
alignItems: 'center',
margin: 10,
marginEnd: 20,
marginStart: 20,
backgroundColor: '#2b6aff',
},
textButton: {
width: '60%',
height:45,
justifyContent: 'center',
alignItems: 'center',
margin: 10,
marginEnd: 20,
marginStart: 20,
},
#Button: {
width: '80%',
height:45,
justifyContent: 'center',
alignItems: 'center',
margin: 10,
marginEnd: 20,
marginStart: 20,
backgroundColor: '#2b6aff',
},
buttonText: {
color: '#FFFFFF',
}
});