選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

styles.js 324B

123456789101112131415
  1. import { createStyleSheet } from '../../styles';
  2. /**
  3. * The style of the avatar and participant view UI (components).
  4. */
  5. export const styles = createStyleSheet({
  6. /**
  7. * ParticipantView style.
  8. */
  9. participantView: {
  10. alignItems: 'stretch',
  11. flex: 1,
  12. justifyContent: 'center'
  13. }
  14. });