blob: 47a37e8b4ca6a4b24fe3aad70685781cd9611503 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import { Styles } from 'reactxp';
import { colors } from '../../config.json';
export default {
preferences: Styles.createViewStyle({
backgroundColor: colors.darkBlue,
flex: 1,
}),
preferences__container: Styles.createViewStyle({
flexDirection: 'column',
flex: 1,
}),
preferences__content: Styles.createViewStyle({
flexDirection: 'column',
flex: 1,
}),
preferences__separator: Styles.createViewStyle({
height: 1,
}),
};
|