How can I make the items in a StaggeredGridView rearrange when I resize the window?
I’m using a StaggeredGridView.extentBuilder that adjusts its height automatically according to the data provided. However, when i resize the window, the positions of its items don’t update immediately. The layout only refreshes when I reload the page.
How can I make the items in a StaggeredGridView rearrange when I resize the window?
I’m using a StaggeredGridView.extentBuilder that adjusts its height automatically according to the data provided. However, when i resize the window, the positions of its items don’t update immediately. The layout only refreshes when I reload the page.
How can I better optimize a StaggeredGridView layout based on list length?
Like most applications, I am trying to create a simple grid layout with the last tile being ‘All +’. I am using the StaggeredGrid Flutter package to build the grid layout but if items <= 4, the grid layout should adjust.