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

123456789101112131415161718192021222324
  1. // @flow
  2. import { StyleSheet } from 'react-native';
  3. import BaseTheme from '../../../base/ui/components/BaseTheme.native';
  4. /**
  5. * The React {@code Component} styles of the overlay feature.
  6. */
  7. export default {
  8. /**
  9. * Style for a backdrop overlay covering the screen the the overlay is
  10. * rendered.
  11. */
  12. container: {
  13. ...StyleSheet.absoluteFillObject,
  14. backgroundColor: BaseTheme.palette.ui00
  15. },
  16. safeContainer: {
  17. flex: 1
  18. }
  19. };