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

styles.js 308B

123456789101112131415
  1. import { createStyleSheet } from '../../styles';
  2. /**
  3. * The styles of the feature base/participants.
  4. */
  5. export default createStyleSheet({
  6. /**
  7. * {@code ParticipantView} style.
  8. */
  9. participantView: {
  10. alignItems: 'stretch',
  11. flex: 1,
  12. justifyContent: 'center'
  13. }
  14. });