SwiftUI Weekly - Issue #144
The curated collection of links about SwiftUI. Delivered every Monday.
Sponsor
Glassfy
Simplify building, managing, and growing in-app purchases. Full set of monetisation tools from subscription management SDK to Paywalls and more. Build for free today
Reading
Dynamic member lookup in Swift
One of my favorite features of the Swift Language is the dynamic member lookup. We don’t use it very often, but it improves the API of the provided type significantly by improving the way we access the data of the particular type.
Exploring Circular Paths: How to Create a Circular Text View in SwiftUI
I had the idea to do this while biking back from work one of the other days and I saw an advertising sign with a letter in a circular path. I don’t quite remember what advertising was but that called my attention.
Creating Forms in SwiftUI
Welcome to another SwiftUI tutorial, where we are about to explore and learn how to create forms in SwiftUI. Forms are a special kind of container views that allow to group input controls together, applying platform-appropriate styling to them automatically. Forms are ideal for building user interfaces that allow data entry, like settings or sign up/sign in views.
Ratings view in SwiftUI
I am currently building a new app where I needed to show ratings for items. Ratings are from 0 to 5 with 0.5 step. In this blog post, we’ll implement a SwiftUI view which uses SF symbols to display ratings.
Videos
Parallax header in SwiftUI
In this video, we will learn about parallax effect and how to implement it in SwiftUI. We will use the GeometryReader to understand the scroll content offset.
SwiftUI GeometryReader
In this video, I want to try and clarify what a GeometryReader is in SwiftUI and how you might use it.