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

Flow Layout implemented in SwiftUI

Results 9 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...

If I try to align views using `HFlow(alignment: .firstTextbaseline)` it does not align correctly: Here's the code (in a Preview) and a comparison to `HStack` which does it correctly: ```swift...

@tevelee Here i am using VFlow and in that i have Header, now i want to expand header as much as it can, for that if i use maxWidth but...

Does this library support lazy loading like in LazyVGrid/LazyHGrid?