/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

www.swifttoolkit.dev
| | swiftwithmajid.com
4.5 parsecs away

Travel
| | The World Wide Developers Conference, the largest event in the Apple development world, is just around the corner. Today, I'm excited to share my wishes for the upcoming WWDC 25, which is expected to be unveiled in two months.
| | drshapeless.com
3.7 parsecs away

Travel
| |
| | pewpewthespells.com
2.3 parsecs away

Travel
| |
| | www.iamsim.me
30.0 parsecs away

Travel
| 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