How to get a simple SwiftUI to load

How can I get SwiftUI to load 8 images horizontally but if the third image happens to go off screen it puts it in a Vstack underneath the 1st image with the same padding... and if three can fit on the screen it does the same to the 6th.

I can not find anyway to do this! This should be simple and is easy to achieve using UIkit.
Could you explain with an image what do you want exactly? I couldn't understand your explanation.
@knshi


iPhone:

[1] [2]
[3] [4]
[5] [6]
[7] [8]

iPad Pro
[1] [2][3] [4]
[5] [6] [7] [8]

iPad Mini
[1] [2][3]
[4] [5] [6]
[7] [8]
@knshi Load left to right and then downward I dont know how else to describe that.... this is extremely frustrating no documentation helps or addresses this basic idea! UItableviews made it so easy to do this simple view
Oh, okay. Have you check the SwiftUI Grids? (they are equivalent to UICollectionViews):

https://developer.apple.com/videos/play/wwdc2020/10031/

hackingwithswift.com/quick-start/swiftui/how-to-position-views-in-a-grid-using-lazyvgrid-and-lazyhgrid

How to get a simple SwiftUI to load
 
 
Q