Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617181920212223242526272829303132333435
  1. import { StyleSheet } from 'react-native';
  2. /**
  3. * The styles of the feature base/media.
  4. */
  5. export default StyleSheet.create({
  6. /**
  7. * Base style of the transformed video view.
  8. */
  9. videoTranformedView: {
  10. flex: 1
  11. },
  12. /**
  13. * A basic style to avoid rendering a transformed view off the component,
  14. * that can be visible on special occasions, such as during device rotate
  15. * animation, or PiP mode.
  16. */
  17. videoTransformedViewContainer: {
  18. overflow: 'hidden'
  19. },
  20. videoTransformedViewContainerWide: {
  21. overflow: 'hidden',
  22. paddingRight: '16%'
  23. },
  24. /**
  25. * Make {@code Video} fill its container.
  26. */
  27. video: {
  28. flex: 1
  29. }
  30. });