SwiftUI-Flow icon indicating copy to clipboard operation
SwiftUI-Flow copied to clipboard

Flow Layout implemented in SwiftUI

Results 6 SwiftUI-Flow issues
Sort by recently updated
recently updated
newest added

The readme states to set the `maxHeight` to `infinity`, however I'm only able to get `VFlow` to work correctly after specifying an exact height value. ``` VFlow { ForEach(colors, id:...

The package has a minimum target iOS 15 but all public functions are available in iOS 16+, which someone discovers after the package installation.

When i try to add package to my project, it says unable to load read me and takes for ever to add package

If using maxHeight instead of height on a VFlow in a ScrollView, the bounds is incorrect and the view is cut off. ```swift ScrollView { VFlow { ForEach(1...21, id: \.self)...

When you have multiple different Text views (color, font, background + clipshape, ...) in a HFlow, the ones which are the first on a new line should have trimmed of...

Following on from previous issue — 3.0.1 did fix the crash I reported — thank you! In the process of trying again in my larger complex project, I developed this...