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

styles.js 699B

123456789101112131415161718192021222324252627282930
  1. import { ColorPalette, createStyleSheet } from '../../base/styles';
  2. export default createStyleSheet({
  3. /**
  4. * The style of the avatar of the participant displayed in largeVideo. It's
  5. * an addition to the default style of Avatar.
  6. */
  7. avatar: {
  8. alignSelf: 'center',
  9. borderRadius: 100,
  10. flex: 0,
  11. height: 200,
  12. width: 200
  13. },
  14. /**
  15. * Large video container style.
  16. */
  17. largeVideo: {
  18. alignItems: 'stretch',
  19. backgroundColor: ColorPalette.appBackground,
  20. bottom: 0,
  21. flex: 1,
  22. justifyContent: 'center',
  23. left: 0,
  24. position: 'absolute',
  25. right: 0,
  26. top: 0
  27. }
  28. });