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