2019-05-07 14:50:57 +00:00
|
|
|
// @flow
|
|
|
|
|
2022-02-17 14:51:00 +00:00
|
|
|
import BaseTheme from '../../../../base/ui/components/BaseTheme.native';
|
2019-05-07 14:50:57 +00:00
|
|
|
|
2022-02-17 14:51:00 +00:00
|
|
|
export const INDICATOR_COLOR = BaseTheme.palette.indicatorColor;
|
2019-05-07 14:50:57 +00:00
|
|
|
|
2022-02-17 14:51:00 +00:00
|
|
|
const WV_BACKGROUND = BaseTheme.palette.ui14;
|
2020-04-06 15:25:30 +00:00
|
|
|
|
2019-05-07 14:50:57 +00:00
|
|
|
export default {
|
|
|
|
|
2020-04-06 15:25:30 +00:00
|
|
|
backDrop: {
|
2021-11-11 14:32:56 +00:00
|
|
|
backgroundColor: WV_BACKGROUND,
|
|
|
|
flex: 1
|
2020-04-06 15:25:30 +00:00
|
|
|
},
|
|
|
|
|
2019-05-07 14:50:57 +00:00
|
|
|
indicatorWrapper: {
|
|
|
|
alignItems: 'center',
|
2022-02-17 14:51:00 +00:00
|
|
|
backgroundColor: BaseTheme.palette.ui12,
|
2019-10-08 11:24:04 +00:00
|
|
|
height: '100%',
|
2019-05-07 14:50:57 +00:00
|
|
|
justifyContent: 'center'
|
|
|
|
},
|
|
|
|
|
|
|
|
webView: {
|
2020-04-06 15:25:30 +00:00
|
|
|
backgroundColor: WV_BACKGROUND,
|
2019-05-07 14:50:57 +00:00
|
|
|
flex: 1
|
|
|
|
}
|
|
|
|
};
|