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 780B

12345678910111213141516171819202122232425262728293031323334353637
  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. // XXX These properties are a workaround for Android views clipping,
  20. // RN doesn't properly blit our overlays on top of video views.
  21. borderColor: ColorPalette.appBackground,
  22. borderWidth: 0.2,
  23. flex: 1
  24. },
  25. /**
  26. * ParticipantView style
  27. */
  28. participantView: {
  29. alignItems: 'stretch',
  30. flex: 1
  31. }
  32. });