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.

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