DIFlowLayout
is a SwiftUI Layout
implementation where subviews are arranged horizontally and wrapped vertically, similar to how text behaves in a multiline label.
DIFlowLayout
works by first grouping subviews into rows based on the proposed container width, subviews' intrinsic size, and spacing values.
Subviews, once grouped into rows, can be vertically and horizontally aligned within their row.
https://github.com/danielinoa/DIFlowLayoutDemo
diflowlayoutdemo.mp4
To install using Swift Package Manager, add this to the dependencies section in your Package.swift
file:
.package(url: "https://github.com/danielinoa/DIFlowLayout.git", .branch("main"))
Feel free to open an issue if you have questions about how to use DIFlowLayout
, discovered a bug, or want to improve the implementation or interface.
DIFlowLayout
is primarily the work of Daniel Inoa.