You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

styles.js 388B

12345678910111213141516171819202122
  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. * Avatar style.
  8. */
  9. avatar: {
  10. flex: 1,
  11. width: '100%'
  12. },
  13. /**
  14. * ParticipantView style.
  15. */
  16. participantView: {
  17. alignItems: 'stretch',
  18. flex: 1
  19. }
  20. });