Get Started with Apps Stuck in Playgrounds

The “Get Started with Apps” in Playgrounds looks great but it won’t allow me to advance to the next activity. It seems to think that my solution is incorrect, but what I did matches the solution provided in the “hint.” This could be corrected by either allowing for more variety in the responses, or by allowing the user to advance to the next activity regardless of whether the response they provided was correct.

Having the Same problem in "Get Started with Apps", tried a bunch of different solutions, but still got stuck in the "Composability" task, adding the 2nd TextView. it does not detect it as the task is done, so I cannot proceed to the next task. is there no skip button still?!

Having the same issue... Can't move forward

I just started this Playgrounds module, and I found this forum because it matches the exact issue I'm having!

I was having this same issue. If you feel like you're stuck, but the code matches what the task says to do, just click on the list icon at the top left of the guide view, and select the next module.

Hi, i've got the same issue, and i cannot click on the next steps

Had the same Problem "Answer not accepted"

Rebuilt the Struct from the Start and the Following Solution gets accepted. (Maybe the text needs to be as prompted!)

cheers JaSagemal

    var body: some View {
        VStack {
            HStack { 
                Image("Friend")
                    .resizable()
                    .scaledToFit()
                VStack {
                    Text("Friend")
                        .font(.largeTitle)
                    Text("The best teacher of SwiftUI this side of the Milky Way!")
                        .font(.caption)
                }
            }
        }
    }
}

import SwiftUI

struct FriendDetailView: View { var body: some View {
VStack { HStack { Text("Hello 🫠") .font(.largeTitle) .font(.title) .foregroundColor(.blue) VStack { Text("Pro") .font(.largeTitle) .foregroundColor(.blue) .font(.title) } } } VStack { HStack { Image("Friend") .scaledToFill() } HStack { Text("Adding a VStack inside an HStack") .font(.footnote) } HStack { Text("Adding a VStack inside an HStack") .font(.footnote) } } VStack { HStack {

            Image("Friend")
                .resizable()
                .scaledToFit()
                .padding(.all, 10)
            Text("ℋℯℓℓ𝑜🫠")
                .foregroundColor(.blue)
                .font(.largeTitle)
            Text("Adding a VStack inside an HStack")
        }
    }
    VStack  {
        HStack {
            Image("Blu")
                .resizable()
                .scaledToFit()
                .padding(.all, 10)
            Text("ℋℯℓℓ𝑜🫠")
                .foregroundColor(.blue)
                .font(.largeTitle)
            Text("Adding a VStack inside an HStack")
        }
    }
    
    VStack  {
        HStack  {
            Image("Hopper")
                .resizable()
                .scaledToFit()
                .padding(.all, 10)
            Text("ℋℯℓℓ𝑜🫠")
                .foregroundColor(.blue)
                .font(.largeTitle)
            Text("Adding a VStack inside an HStack")
        }
    }
    VStack  {
        HStack  {
            Image("Friend")
                .resizable()
                .scaledToFit()
                .padding(.all, 10)
            Text("ℋℯℓℓ𝑜🫠")
                .foregroundColor(.blue)
                .font(.largeTitle)
            Text("Adding a VStack inside an HStack")
        }
    }
    
}

} struct FriendDetailView_Previews: PreviewProvider { static var previews: some View { VStack { FriendDetailView() } } }

Friend Detail View

Friend Detail View

Hi everyone, I am Having the Same problem in "Get Started with Apps",

Still could not find solutions, I do everything what is written on instructions but not work,

Anyone else who pass this stage ?

Get Started with Apps Stuck in Playgrounds
 
 
Q