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

styles.js 309B

1234567891011121314
  1. import { createStyleSheet } from '../../styles';
  2. /**
  3. * The styles of the feature base/aspect-ratio.
  4. */
  5. export default createStyleSheet({
  6. /**
  7. * The style of {@link AspectRatioDetector} used on react-native.
  8. */
  9. aspectRatioDetector: {
  10. alignSelf: 'stretch',
  11. flex: 1
  12. }
  13. });