Summary: Pull Request resolved: https://github.com/facebook/yoga/pull/1598 tisa Reviewed By: NickGerleman Differential Revision: D54778011 fbshipit-source-id: d1a38a88da3e8534577f87ea410bd8d8b3ecc6be
26 lines
590 B
Plaintext
26 lines
590 B
Plaintext
---
|
|
sidebar_position: 4
|
|
---
|
|
|
|
import Playground from '@site/src/components/Playground';
|
|
|
|
# Display
|
|
|
|
Display controls which layout specification to follow.
|
|
|
|
**Flex (default)**: The CSS Flexible Box Model specification.
|
|
|
|
**None**: The node is removed from the layout tree and will not be visible.
|
|
|
|
<Playground code={`<Layout config={{useWebDefaults: false}}>
|
|
<Node
|
|
style={{
|
|
width: 200,
|
|
height: 200,
|
|
padding: 10,
|
|
}}>
|
|
<Node style={{margin: 5, height: 50, display: 'flex'}} />
|
|
<Node style={{margin: 5, height: 50, display: 'none'}} />
|
|
</Node>
|
|
</Layout>`} />
|