You control the position of the items by using the parameter alignment, which sets the HorizontalAlignment of the items. I.e. leading, trailing or centered.
For even more convenience and flexibility, WrappingHSTack offers the parameter spacing, that defines how the spacing will be calculated. It can be one of the following types:
.constant: for fixed spacing, each line starts with an item and the horizontal separation between any 2 items is the given value.
.dynamic: to have the items fill the width of the WrappingHSTack. You can pass a minimal spacing.
.dynamicIncludingBorders to fill the full width with equal spacing between items and from the items to the border. You can pass a minimal spacing.
Known Issues
Issue #15: Item sizes are calculated incorrectly when WrappingHStack has modifiers that change the size of its elements.
Issue #16: Workaround needed when using WrappingHStack in a NavigationLink (iOS16 only).
Issue #10: SPM cannot resolve the dependency (Xcode 11.3.1 only).
WrappingHStack
WrappingHStack is a UI Element that works in a very similar way to HStack, but automatically positions overflowing elements on next lines.
Example
Installation
Requirements iOS 13+
Swift Package Manager
Swift Package
Cocoapods
Simply add the following line to your
Podfile
:Usage
Import the WrappingHStack package to your view:
use it like you would use HStack for single elements:
or like a ForEach to loop over items:
Item positioning
You control the position of the items by using the parameter
alignment
, which sets theHorizontalAlignment
of the items. I.e. leading, trailing or centered.For even more convenience and flexibility,
WrappingHSTack
offers the parameterspacing
, that defines how the spacing will be calculated. It can be one of the following types:.constant
: for fixed spacing, each line starts with an item and the horizontal separation between any 2 items is the given value..dynamic
: to have the items fill the width of the WrappingHSTack. You can pass a minimal spacing..dynamicIncludingBorders
to fill the full width with equal spacing between items and from the items to the border. You can pass a minimal spacing.Known Issues
WrappingHStack
in aNavigationLink
(iOS16 only).Contribute
You can contribute to this project by helping me solve any reported issues or feature requests and creating a pull request.
Support
Sponsor this project to get a reward and give me a moral boost.
License
WrappingHStack was originally developed by Daniel Klöck and is released under the MIT License.