Home > Software engineering >  GridView with different count of widgets per row
GridView with different count of widgets per row

Time:09-14

I want to make kind of a grid view but in a way that the amount of widgets per row is determined by the width of widgets(my widgets have different width). I have surfed the web, but it does not give me anything. So, what shall I do?

CodePudding user response:

Maybe you want to use a Wrap

It puts its children horizontally as much as fits and wrapping to a new row as much as needed

  • Related