blob: 0c9ab0d3c5b07855fdc404cd95954df88a1c6fe8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import { Styles } from 'reactxp';
import { colors } from '../../config.json';
export default {
select_location: Styles.createViewStyle({
backgroundColor: colors.darkBlue,
flex: 1,
}),
container: Styles.createViewStyle({
flexDirection: 'column',
flex: 1,
}),
title_header: Styles.createViewStyle({
paddingBottom: 0,
}),
subtitle_header: Styles.createViewStyle({
paddingTop: 0,
}),
content: Styles.createViewStyle({
overflow: 'visible',
}),
};
|