website/docs/styling/aspect-ratio.mdx
import Playground from '@site/src/components/Playground';
The aspect ratio property in Yoga has the following properties:
<Playground code={<Layout config={{useWebDefaults: false}}> <Node style={{ width: 200, height: 200, padding: 10, }}> <Node style={{margin: 5, height: 50, aspectRatio: 1.0}} /> <Node style={{margin: 5, height: 50, aspectRatio: 1.5}} /> </Node> </Layout>} />