Chapter 12 @AcceesibilityFocusState

Just a minor thing: in addition to adding the isQuestionFocused property and setting up the action for the middle button, you have to update the text in the card like this:

Text(flashCard.card.question)
                        .font(.largeTitle)
                        .foregroundColor(.white)
                        .accessibilityFocused($isQuestionFocused)
2 Likes