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

1234567891011121314151617181920212223242526272829303132333435
  1. import {
  2. ColorPalette,
  3. createStyleSheet,
  4. fixAndroidViewClipping
  5. } from '../../base/styles';
  6. /**
  7. * The style of the conference UI (component).
  8. */
  9. export const styles = createStyleSheet({
  10. /**
  11. * Avatar style.
  12. */
  13. avatar: {
  14. flex: 1,
  15. width: '100%'
  16. },
  17. /**
  18. * Conference style.
  19. */
  20. conference: fixAndroidViewClipping({
  21. alignSelf: 'stretch',
  22. backgroundColor: ColorPalette.appBackground,
  23. flex: 1
  24. }),
  25. /**
  26. * ParticipantView style
  27. */
  28. participantView: {
  29. alignItems: 'stretch',
  30. flex: 1
  31. }
  32. });