-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.js
41 lines (40 loc) · 832 Bytes
/
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
var {StyleSheet, Platform} = require('react-native');
var {MKColor} = require('react-native-material-kit');
module.exports = StyleSheet.create({
scrollView: {
flex: 1,
},
container: {
flex: 1,
alignItems: 'stretch',
backgroundColor: '#F5FCFF',
padding: 20,
marginTop: Platform.OS === 'android' ? 56 : 0,
},
row: {
flexDirection: 'row',
},
col: {
flex: 1,
flexDirection: 'column',
alignItems: 'center',
marginLeft: 7, marginRight: 7,
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10,
},
instructions: {
textAlign: 'center',
color: '#333333',
marginTop: 10, marginBottom: 20,
},
legendLabel: {
textAlign: 'center',
color: '#666666',
marginTop: 10, marginBottom: 20,
fontSize: 12,
fontWeight: '300',
},
});