Hey everyone! I've been building iOS apps for a while and kept copying the same utilities across projects, so I finally packaged them up as SPM libraries.
1.
Track ScrollView offset — great for collapsing headers.
OffsetTrackingScrollView { offset in
print(offset.y)
} content: {
// your content
}
3.
Wrapping HStack for tags and chips. Uses the Layout protocol.
FlowLayout(spacing: 8) {
ForEach(tags, id: \.self) { Text($0) }
}
5. ios-appstore-review-link
Open App Store review page with one line.
AppStoreReview.open(appID: "123456789")
All MIT licensed, zero dependencies. Would love any feedback or suggestions!
SOCIAL SHARE CARD GENERATOR