您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

styles.js 621B

123456789101112131415161718192021222324252627282930
  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. /**
  21. * Make {@code Video} fill its container.
  22. */
  23. video: {
  24. flex: 1
  25. }
  26. });