|
You are here |
sarunw.com | ||
| | | | |
swiftwithmajid.com
|
|
| | | | | During WWDC 23, SwiftUI introduced a new view modifier called visualEffect. This modifier allows us to attach a set of animatable visual effects by accessing layout information of the particular view. This week, we will learn how to use the new visualEffect view modifier in SwiftUI. | |
| | | | |
www.iamsim.me
|
|
| | | | | Not being able to run arbitrary code in SwiftUI view builders can be quite annoying. The other day I realized it's possible to use self executing closures to work around this! Here's a contrived example that creates a stretchy header: struct ScrollThing: View { var body: some View { ScrollView { VStack(spacing: 0) { GeometryReader { g in Color.white .offset(y: { let offsetY = g.frame(in: .global).minY return offsetY > 0 ? | |
| | | | |
blog.hobbyistsoftware.com
|
|
| | | | | ||
| | | | |
www.onswiftwings.com
|
|
| | | Learn how to build an iOS application that follows MVVM Design Pattern and uses Combine framework | ||