Module 5 Lesson 10 b

When I run the program, I click on the Test card all the next page shows is “Get Started” and the back arrow. The same happened with the downloaded version from DropBox.

Yeah I see the same.

A way around that is to wrap the entire body code in a VStack. ie:

VStack {
    if model.currentQuestion != nil {
        ...
        ...
        ...
    }
}

The entire course was originally created using Xcode 12.4 then Xcode 12.5 was released and that caused some issues which were addressed in Lesson 16 but it looks like now that we are up to Xcode 14.1 (or 14.2 ?) there are some other gremlins at play.

This issue could be a timing issue in that if you wrap the entire if statement in the VStack it behaves properly.

Worked like a charm.
Thank you