What is the difference between Wrap, Autofill and Manual?
Wrap: In the “Wrap” layout, elements are automatically arranged in a wrapping manner, meaning they will stack horizontally until the available width is exhausted.
Autofill: The “Autofill” layout automatically arranges elements in rows, and it sizes each element equally to fill the available space. If there’s extra space, it distributes it evenly among the elements.
Manual: With the “Manual” layout, you have full control over the positioning and sizing of each element within the container. You manually define their positions and dimensions.
@Vikas_Malik What are the elements where wrap option is available ?
List of elements who supported Wrap behavior
Button
Image
Text
Row
Column
Stack
Card
List
Accordion
Grid List
@Vikas_Malik Does autofill work horizontally only? Is there any element for which autofill works vertically?