vitalets / react-native-extended-stylesheet

Extended StyleSheets for React Native
MIT License
2.93k stars 132 forks source link

Aspect-ratio #52

Closed DenisDov closed 6 years ago

DenisDov commented 7 years ago

How to use aspect-ratio media query. Need example. Thanks!

vitalets commented 6 years ago

For example, set red color for aspect-ratio greater than 9/16:

const styles = EStyleSheet.create({
  header: {
    color: 'blue',
    '@media (min-aspect-ratio: 9/16)': {
      color: 'red'
    }
  }
});