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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. import { ColorPalette, createStyleSheet } from '../../../base/styles';
  2. import { styles as platformIndependentStyles } from '../styles';
  3. /**
  4. * The base/default style of indicators such as audioMutedIndicator,
  5. * moderatorIndicator, and videoMutedIndicator.
  6. */
  7. const indicator = {
  8. textShadowColor: ColorPalette.black,
  9. textShadowOffset: {
  10. height: -1,
  11. width: 0
  12. }
  13. };
  14. /**
  15. * Native-specific styles for the filmstrip.
  16. */
  17. export const styles = createStyleSheet(platformIndependentStyles, {
  18. /**
  19. * Audio muted indicator style.
  20. */
  21. thumbnailIndicator: indicator,
  22. dominantSpeakerIndicator: {
  23. fontSize: 12
  24. },
  25. /**
  26. * Dominant speaker indicator background style.
  27. */
  28. dominantSpeakerIndicatorBackground: {
  29. borderRadius: 16,
  30. padding: 4
  31. },
  32. /**
  33. * Moderator indicator style.
  34. */
  35. moderatorIndicator: indicator,
  36. /**
  37. * Video thumbnail style.
  38. */
  39. thumbnail: {
  40. height: 80,
  41. width: 80
  42. }
  43. });