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 338B

123456789101112131415161718192021
  1. // @flow
  2. import { ColorSchemeRegistry, schemeColor } from '../../color-scheme';
  3. export default {
  4. jitsiScreenContainer: {
  5. flex: 1
  6. },
  7. safeArea: {
  8. flex: 1
  9. }
  10. };
  11. ColorSchemeRegistry.register('Modal', {
  12. page: {
  13. alignItems: 'stretch',
  14. backgroundColor: schemeColor('background')
  15. }
  16. });