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

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