blob: 7db2a0225b1ca5b3f4d0d9160be9ccd932b72792 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// @flow
import { Styles } from 'reactxp';
import { colors } from '../config';
export default {
layout: Styles.createViewStyle({
flexDirection: 'column',
flex: 1,
}),
header: Styles.createViewStyle({
flex: 0,
}),
container: Styles.createViewStyle({
flex: 1,
backgroundColor: colors.blue,
overflow: 'hidden',
}),
};
|