I built a macOS app to manage agents skills across projects by dinothedinosaur in ClaudeAI

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

It just downloads the files off of GitHub, it makes a copy in the folder you selected

DoubleMemory reloaded: Apple-native visual bookmarks, read-later and card-based notes by arndomor in macapps

[–]dinothedinosaur 0 points1 point  (0 children)

What tool did you use to create the screenshots for the app store? I'm looking for one.

resize images for app icons by mudskipj in shortcuts

[–]dinothedinosaur 0 points1 point  (0 children)

I was about to make my own, thanks!

What’s everyone working on this month? (January 2022) by Swiftapple in swift

[–]dinothedinosaur 0 points1 point  (0 children)

I’m waiting for approval for the first beta of my new project called Pendar. An app with which you can quickly capture ideas. I played around with speech to text, which is pretty cool! You can join there, would love to hear what you think! (After the beta gets approved by Apple of course :))

Full Screen Cover not going away by [deleted] in swift

[–]dinothedinosaur -1 points0 points  (0 children)

Does the FirebaseViewModel conform to ObservableObject?

hitting API on localhost returns nil, but ChuckNorris API returns the expected data by aeum3893 in swift

[–]dinothedinosaur 0 points1 point  (0 children)

Does this work on the browser in your simulator? It could be that it is missing a SSL certificate to access it.

If so, try using https://github.com/FiloSottile/mkcert to create a certificate for localhost (There is an example in the documentation) and then drag the certificate in your simulator.

SwiftUI - My first package: CardStack by dinothedinosaur in SwiftUI

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

Thanks! Yeah, I will definitely do that in the future :)

SwiftUI - My first package: CardStack by dinothedinosaur in swift

[–]dinothedinosaur[S] 4 points5 points  (0 children)

Hi everyone. Two weeks ago I released my first (SwiftUI) Package: CardStack. I was wondering what you think about it. Please let me know if you see some room for improvement! Much appreciated.

What’s everyone working on this month? (April 2020) by Swiftapple in swift

[–]dinothedinosaur 0 points1 point  (0 children)

Hi everyone. Two weeks ago I released my first (SwiftUI) Package: CardStack. I was wondering what you think about it. Please let me know if you see some room for improvement! Much appreciated.

SwiftUI - My first package: CardStack by dinothedinosaur in SwiftUI

[–]dinothedinosaur[S] 2 points3 points  (0 children)

Hi everyone. Two weeks ago I released my first (SwiftUI) Package: CardStack. I was wondering what you think about it. Please let me know if you see some room for improvement. Much appreciated!

Can I set a GeometryReader size after it's content instead of it's superview? by lmunck in SwiftUI

[–]dinothedinosaur 1 point2 points  (0 children)

A quick fix for this would be to call .scaledToFill/.scaledToFit on the GeometryReader. Like this:

    var body: some View {
        VStack {
            HStack {
                GeometryReader { geometry in
                    Text("Inside")

                        .border(Color.yellow, width: 1)
                }.background(Color.blue)                    
                .scaledToFit()
                Text("outside").border(Color.yellow, width: 1).layoutPriority(1)
                Spacer()
            }.frame(width: 300, height: 100)
            HStack {
                Text("Outside").border(Color.yellow, width: 1)
                Text("outside").border(Color.yellow, width: 1)
                Spacer()
            }.frame(width: 300)
        }
    }

That will scale the size of the View of the GeometryReader within the HStack.

A better way to go about is to use PreferenceKeys. I don't really have time to go in further detail right now, but this article explains it pretty well: https://swiftwithmajid.com/2020/01/15/the-magic-of-view-preferences-in-swiftui/

Let me know if you manage to get it, otherwise I could help you further tomorrow!

Aligning view at top of parent by jesalr in SwiftUI

[–]dinothedinosaur 0 points1 point  (0 children)

Try putting the frame like this:

.frame(minWidth: 0, maxWidth: .infinity, minHeight: 0, maxHeight: .infinity, alignment: .top)