-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
Description
The current implementation does not consider the min-content of items, which may lead to unexpected compression of certain nodes.
<div style="display: flex; flex-direction: column; height: 100px;">
<div>32x16</div>
<div style="height: 100px; width: 100px;"></div>
<div style="height: 100px; width: 100px;"></div>
</div>The container is being shrunk due to flex-shrink, while the expected height should be the child's min-content.
This feature needs to be implemented not only in the Flex Layout algorithm but also in other layout algorithms.
Reactions are currently unavailable
