We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acfb2fd commit 773cd54Copy full SHA for 773cd54
GoInfoGame/GoInfoGame/quests/SideWalkValidation/SideWalkValidationForm.swift
@@ -8,6 +8,8 @@
8
import SwiftUI
9
10
struct SideWalkValidationForm: QuestForm ,View {
11
+ var action: ((SideWalkValidationAnswer) -> Void)?
12
+
13
typealias AnswerClass = SideWalkValidationAnswer
14
@State private var showAlert = false
15
@State private var selectedAnswer : SideWalkValidationAnswer = SideWalkValidationAnswer.noAnswerSelected
GoInfoGame/GoInfoGame/quests/SidewalkSurface/SidewalkSurfaceForm.swift
// View representing a form for sidewalk surface selection
struct SidewalkSurfaceForm: QuestForm ,View {
+ var action: ((SidewalkSurfaceAnswer) -> Void)?
func applyAnswer(answer: SidewalkSurfaceAnswer) {
}
typealias AnswerClass = SidewalkSurfaceAnswer
0 commit comments