-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyles.js
42 lines (40 loc) · 769 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
42
import { StyleSheet, Platform } from 'react-native';
export default styles = StyleSheet.create({
touchable: {
padding: 6,
justifyContent: 'center',
alignItems: 'center'
},
text: {
fontFamily: 'Roboto-Medium',
fontSize: 14,
color: '#ffffff'
},
loadingText: {
marginLeft: 6
},
btn: {
minWidth: 76,
minHeight: 36,
paddingHorizontal: 16,
borderRadius: 2,
flexDirection: 'row',
justifyContent: 'center',
alignItems: 'center'
},
raised: {
...Platform.select({
ios: {
shadowOffset: { width: 0, height: 2 },
shadowColor: '#000000',
shadowOpacity: 0.3,
shadowRadius: 2
},
android: {
elevation: 2
}
})
},
loading: {
}
});