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

123456789101112131415161718192021222324252627282930
  1. import { ColorPalette, createStyleSheet } from '../../base/styles';
  2. export const styles = createStyleSheet({
  3. /**
  4. * The style of the avatar of the participant displayed in largeVideo. It's
  5. * an addition to the default style of Avatar.
  6. */
  7. avatar: {
  8. alignSelf: 'center',
  9. borderRadius: 100,
  10. flex: 0,
  11. height: 200,
  12. width: 200
  13. },
  14. /**
  15. * Large video container style.
  16. */
  17. largeVideo: {
  18. alignItems: 'stretch',
  19. backgroundColor: ColorPalette.appBackground,
  20. bottom: 0,
  21. flex: 1,
  22. justifyContent: 'center',
  23. left: 0,
  24. position: 'absolute',
  25. right: 0,
  26. top: 0
  27. }
  28. });