This repository has been archived by the owner on Dec 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathExNavigatorStyles.js
89 lines (83 loc) · 1.66 KB
/
ExNavigatorStyles.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
'use strict';
import React from 'react';
import { StyleSheet } from 'react-native';
import Colors from './Colors';
import Layout from './Layout';
let ExNavigatorStyles = StyleSheet.create({
navigator: {},
bar: {
backgroundColor: '#f8f8f8',
borderBottomColor: '#b2b2b2',
borderBottomWidth: Layout.pixel,
},
barTitleText: {
fontFamily: 'HelveticaNeue-Medium',
fontSize: 17,
marginTop: 11 + Layout.pixel,
},
barButtonIcon: {
tintColor: Colors.tint,
},
barButtonText: {
color: Colors.tint,
fontSize: 17,
},
barLeftButton: {
paddingRight: 40,
paddingBottom: 6,
flexDirection: 'row',
justifyContent: 'flex-start',
},
barLeftButtonText: {
color: Colors.tint,
fontSize: 17,
marginTop: 11 + Layout.pixel,
marginLeft: 8,
},
barLeftButtonIcon: {
tintColor: Colors.tint,
marginTop: 11,
marginLeft: 16,
},
barRightButton: {
paddingLeft: 40,
paddingBottom: 6,
flexDirection: 'row',
justifyContent: 'flex-end',
},
barRightButtonText: {
color: Colors.tint,
fontSize: 17,
marginTop: 11 + Layout.pixel,
marginRight: 8,
},
barRightButtonIcon: {
tintColor: Colors.tint,
marginTop: 12,
marginRight: 16,
},
barBackButton: {
paddingRight: 40,
paddingBottom: 12,
flexDirection: 'row',
justifyContent: 'flex-end',
},
barBackButtonText: {
marginTop: 11,
marginLeft: 6,
},
});
ExNavigatorStyles.scene = {
backgroundColor: '#fff',
top: 0,
left: 0,
bottom: 0,
right: 0,
};
ExNavigatorStyles.barButtonPressRetentionOffset = {
top: 40,
left: 60,
right: 60,
bottom: 80,
};
export default ExNavigatorStyles;