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

styles.js 392B

123456789101112131415161718192021222324
  1. import { StyleSheet } from 'react-native';
  2. /**
  3. * Make video element fill its container.
  4. */
  5. const video = {
  6. flex: 1
  7. };
  8. /**
  9. * Transform local videos to behave like a mirror.
  10. */
  11. const mirroredVideo = {
  12. ...video,
  13. transform: [ { scaleX: -1 } ]
  14. };
  15. /**
  16. * Native-specific styles for media components.
  17. */
  18. export const styles = StyleSheet.create({
  19. mirroredVideo,
  20. video
  21. });