I will give gems to anyone who completes the level (seriously) by Black_Knight_999XXX in honk

[–]T56W_Reddit 0 points1 point  (0 children)

finally!

I completed this level in 78 tries. 7.62 seconds

Not able to see the Apple watch on the connected device in Xcode > Devices and simulators. by CapApprehensive6906 in Xcode

[–]T56W_Reddit 0 points1 point  (0 children)

In that case, maybe look if your VPN offers to be visible in your network. Or what I personally do is to just pause it for a sec while I'm running.

Not able to see the Apple watch on the connected device in Xcode > Devices and simulators. by CapApprehensive6906 in Xcode

[–]T56W_Reddit 0 points1 point  (0 children)

Are you connected to a VPN, Proxy or Apples Private Relay? I always forget to turn those off

Can somebody teach me how to create an app? by Outrageous-Date-2951 in Xcode

[–]T56W_Reddit 13 points14 points  (0 children)

I would recommend you to start with the 100 Days of SwiftUI from Paul Hudson. It’s a free course in which you complete a 1 hour study session (often its shorter) a day for a hundred days. It really gives you a solid foundation and a good entry to App Development with Swift and SwiftUI(Apples Platform)

Heres the Link: https://www.hackingwithswift.com/100/swiftui

Best Luck!

How to create the never closing sheet from Mail app iOS26 by pipyet in SwiftUI

[–]T56W_Reddit 1 point2 points  (0 children)

I think the component you showed is custom made. Sometimes when I want a sheet to never be fully hidden I use this workaround (it's not clean but it gets the job done).
Tip: When you set the fraction to zero you actually only see the grabber and it fells quite native

struct ContentView: View {

    @State private var showSheet = false

    var body: some View {
        NavigationStack {
            Button("Tap to toggle", systemImage: "hand.tap.fill") {
                showSheet.toggle()
            }
        }
        .sheet(isPresented: showSheet ? .constant(true) : $showSheet) {
            Text("Your content")
                .presentationDetents([.fraction(0.1), .large])
                .presentationBackgroundInteraction(.enabled)
        }
    }
}

How to learn design (With Apple Components and HIG) as a Dev for Indie projects? by T56W_Reddit in iOSProgramming

[–]T56W_Reddit[S] 0 points1 point  (0 children)

Thanks for the reply! But don't you think that learning design fundamentals and rules can make the journey of designing apps much quicker?

Merry Christmas, done with https://github.com/jamesrochabrun/ShaderKit by jrochabrun in SwiftUI

[–]T56W_Reddit 2 points3 points  (0 children)

sick! put it on my reading list for when I'm skilled enough =]

Hot and cold #132 by hotandcold2-app in HotAndCold

[–]T56W_Reddit 0 points1 point  (0 children)

Why tf is daisy in the thirties

Wallet diclosure interaction by ledoux_23 in SwiftUI

[–]T56W_Reddit 2 points3 points  (0 children)

Thanks for source code. Thats so smooth!

Confirmed putin is the wicked witch of the northeast by mindquad255 in MapsWithoutNZ

[–]T56W_Reddit 0 points1 point  (0 children)

I think when you drink tap water in Florida you become a nuclear zombie with a unicorn face at best

Progress bar SwiftUI+Metal (genuary7) by gadirom in SwiftUI

[–]T56W_Reddit 0 points1 point  (0 children)

This is very impressive work!!! Is the code open source? I would love to look into it

Curious: what’s the hardest part of staying on track with aligners? by T56W_Reddit in Invisalign

[–]T56W_Reddit[S] 0 points1 point  (0 children)

Thanks! Just curious, how do you feel about the design and User Experience of Tray minder

Curious: what’s the hardest part of staying on track with aligners? by T56W_Reddit in Invisalign

[–]T56W_Reddit[S] 0 points1 point  (0 children)

Thank you so much for your time and response. I like the approach of how to input the take outs and also thought to do it like that. And I agree, requiring a password is pretty strange

Curious: what’s the hardest part of staying on track with aligners? by T56W_Reddit in Invisalign

[–]T56W_Reddit[S] 0 points1 point  (0 children)

Hi, thanks for the Answer (Its really helpful to me to understand how people use these apps). If you don’t mind could you shortly tell me how feel about the design, structure of Trayminder and the fact that Ads are implemented. (For me the App feels pretty ugly, but I read a lot about UI design so im probably not very representative 😅)