Controls how widgets are laid out and kept in place as the grid changes (default: 'top').
See float example and
list example.
Options:
'top': top gravity packing - widgets float up to fill empty space above them (was float: false)
'float': no gravity - widgets stay exactly where placed, only pushed when colliding (was float: true)
'list': widgets are continuously reflowed in sequential (row-major) order, like a re-orderable list -
moving/adding/removing an item reflows everyone else after it, keeping relative order
'compact': same continuous reflow as 'list', but reuses any truly empty gaps first, so a smaller
item can jump ahead of a bigger one - order isn't guaranteed to stay stable
Controls how widgets are laid out and kept in place as the grid changes (default:
'top'). See float example and list example.Options:
'top': top gravity packing - widgets float up to fill empty space above them (wasfloat: false)'float': no gravity - widgets stay exactly where placed, only pushed when colliding (wasfloat: true)'list': widgets are continuously reflowed in sequential (row-major) order, like a re-orderable list - moving/adding/removing an item reflows everyone else after it, keeping relative order'compact': same continuous reflow as'list', but reuses any truly empty gaps first, so a smaller item can jump ahead of a bigger one - order isn't guaranteed to stay stable