123456789101112131415161718192021222324 |
- // @flow
-
- import { ColorPalette } from '../../../../base/styles';
-
- export const INDICATOR_COLOR = ColorPalette.lightGrey;
-
- export default {
-
- indicatorWrapper: {
- alignItems: 'center',
- backgroundColor: ColorPalette.white,
- flex: 1,
- justifyContent: 'center'
- },
-
- webView: {
- flex: 1
- },
-
- webViewWrapper: {
- flex: 1,
- flexDirection: 'column'
- }
- };
|