forked from GeekyAnts/NativeBase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbootstrap.js
More file actions
107 lines (102 loc) · 1.86 KB
/
bootstrap.js
File metadata and controls
107 lines (102 loc) · 1.86 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/* @flow */
'use strict';
var React = require('react-native');
var primary = require('./variable').brandPrimary
var secondary = require('./variable').brandSecondary
var {
StyleSheet,
Dimensions,
PixelRatio
} = React;
var deviceHeight = Dimensions.get('window').height;
module.exports = StyleSheet.create({
button: {
padding: 10,
borderColor: 'transparent',
alignSelf: 'stretch',
height: 45,
marginTop: 18,
marginLeft: 10,
marginRight: 10,
shadowColor: '#000',
shadowOffset: {width: 1, height: 2},
shadowOpacity: 0.2,
shadowRadius: 3,
alignItems: 'center'
},
buttonText: {
fontSize: 18
},
circularButton: {
padding: 25,
alignSelf: 'center',
borderRadius: 40,
width: 80,
height: 80,
marginTop: 28,
paddingRight: 10,
shadowColor: '#000',
shadowOffset: {width: 2, height: 2},
shadowOpacity: 0.2,
shadowRadius: 4
},
circularButtonText: {
color: '#fff',
fontSize: 10,
marginTop: -12,
marginLeft: -5
},
textIconInput: {
height: 40,
backgroundColor: 'transparent',
paddingLeft: 40
},
textInput: {
height: 40,
backgroundColor: 'transparent',
},
light: {
color: '#fff'
},
dark: {
color: '#000'
},
outerBorder: {
position:'relative',
borderColor: 'white',
borderWidth: 1 / PixelRatio.get(),
borderTopWidth: 0,
borderRightWidth: 0,
borderLeftWidth: 0,
margin: 15,
marginTop: 5
},
darkborder: {
borderColor: '#000',
},
lightborder: {
borderColor: '#fff',
},
underline: {
position:'relative',
borderWidth: 1 / PixelRatio.get(),
borderTopWidth: 0,
borderRightWidth: 0,
borderLeftWidth: 0,
margin: 15,
marginTop: 5
},
bordered: {
position:'relative',
borderWidth: 1 / PixelRatio.get(),
margin: 15,
marginTop: 5
},
rounded: {
position:'relative',
borderWidth: 1 / PixelRatio.get(),
borderRadius: 30,
margin: 15,
marginTop: 5
}
});