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