Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324
  1. // @flow
  2. import { ColorPalette } from '../../../../base/styles';
  3. export const INDICATOR_COLOR = ColorPalette.lightGrey;
  4. export default {
  5. indicatorWrapper: {
  6. alignItems: 'center',
  7. backgroundColor: ColorPalette.white,
  8. flex: 1,
  9. justifyContent: 'center'
  10. },
  11. webView: {
  12. flex: 1
  13. },
  14. webViewWrapper: {
  15. flex: 1,
  16. flexDirection: 'column'
  17. }
  18. };