You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

styles.js 497B

123456789101112131415161718192021
  1. import { StyleSheet } from 'react-native';
  2. import { ColorPalette, createStyleSheet } from '../../base/styles';
  3. /**
  4. * The React {@code Component} styles of {@code OverlayFrame}.
  5. */
  6. export const overlayFrame = createStyleSheet({
  7. /**
  8. * Style for a backdrop overlay covering the screen the the overlay is
  9. * rendered.
  10. */
  11. container: {
  12. ...StyleSheet.absoluteFillObject,
  13. backgroundColor: ColorPalette.black
  14. },
  15. safeContainer: {
  16. flex: 1
  17. }
  18. });