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

styles.js 554B

12345678910111213141516171819202122232425262728293031
  1. import { ColorPalette, createStyleSheet } from '../../base/styles';
  2. /**
  3. * The style of the conference UI (component).
  4. */
  5. export const styles = createStyleSheet({
  6. /**
  7. * Avatar style.
  8. */
  9. avatar: {
  10. flex: 1,
  11. width: '100%'
  12. },
  13. /**
  14. * Conference style.
  15. */
  16. conference: {
  17. alignSelf: 'stretch',
  18. backgroundColor: ColorPalette.appBackground,
  19. flex: 1
  20. },
  21. /**
  22. * ParticipantView style
  23. */
  24. participantView: {
  25. alignItems: 'stretch',
  26. flex: 1
  27. }
  28. });