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

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. });