Is it possible to have some kind of "brick" layout in SwiftUI with a different number of items in each row? Something that would satisfy the following:
- Have the system add as many item in row 1 before moving to row 2, etc.
- The items length are only known at runtime
- The best example I can think of is how text work, each word is different in length and only the right number of works is displayed in each row!
I searched around stack overflow and other forums / websites but haven't found anything promising yet. Thanks for your help on this!