-
Notifications
You must be signed in to change notification settings - Fork 135
Expand file tree
/
Copy pathstyles.ts
More file actions
29 lines (28 loc) · 717 Bytes
/
styles.ts
File metadata and controls
29 lines (28 loc) · 717 Bytes
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
import { I18nManager, StyleSheet } from 'react-native';
export default StyleSheet.create({
controlsContainer: {
flexDirection: 'row',
justifyContent: I18nManager.isRTL ? 'flex-end' : 'flex-start',
alignItems: 'center',
},
highThumbContainer: {
position: 'absolute',
},
railsContainer: {
...StyleSheet.absoluteFillObject,
flexDirection: 'row',
alignItems: 'center',
},
labelFixedContainer: {
alignItems: I18nManager.isRTL ? 'flex-end' : "flex-start",
},
labelFloatingContainer: {
position: 'absolute',
left: 0,
right: 0,
alignItems: I18nManager.isRTL ? 'flex-end' : "flex-start",
},
touchableArea: {
...StyleSheet.absoluteFillObject,
},
});