Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

styles.js 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. import {
  2. ColorPalette,
  3. createStyleSheet,
  4. fixAndroidViewClipping
  5. } from '../../base/styles';
  6. /**
  7. * The styles of the feature conference.
  8. */
  9. export default createStyleSheet({
  10. /**
  11. * {@code Conference} style.
  12. */
  13. conference: fixAndroidViewClipping({
  14. alignSelf: 'stretch',
  15. backgroundColor: ColorPalette.appBackground,
  16. flex: 1
  17. }),
  18. /**
  19. * The style of the View rendered while the conference is being connected
  20. * (i.e. the XMPP connection is being established and the MUC is being
  21. * joined).
  22. */
  23. connectingIndicator: {
  24. alignItems: 'center',
  25. bottom: 0,
  26. justifyContent: 'center',
  27. left: 0,
  28. position: 'absolute',
  29. right: 0,
  30. top: 0,
  31. // Because the background of LargeVideo varies wildly (e.g. the
  32. // participant's video or avatar), the LoadingIndicator may be difficult
  33. // to see. Reduce the variance of the background of LargeVideo and,
  34. // thus, increase the visibility of LoadingIndicator by introducing
  35. // contrast and translucency.
  36. backgroundColor: ColorPalette.appBackground,
  37. opacity: 0.5
  38. }
  39. });