您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

styles.js 490B

1234567891011121314151617181920212223242526
  1. // @flow
  2. import { ColorPalette } from '../../../../base/styles';
  3. export const INDICATOR_COLOR = ColorPalette.lightGrey;
  4. const WV_BACKGROUND = 'rgb(71, 71, 71)';
  5. export default {
  6. backDrop: {
  7. backgroundColor: WV_BACKGROUND
  8. },
  9. indicatorWrapper: {
  10. alignItems: 'center',
  11. backgroundColor: ColorPalette.white,
  12. height: '100%',
  13. justifyContent: 'center'
  14. },
  15. webView: {
  16. backgroundColor: WV_BACKGROUND,
  17. flex: 1
  18. }
  19. };