Search Docs…

Search Docs…

Guide

Presenting the Survey

🚀 Presenting the Survey Modal

To trigger the survey modal, set up a state boolean and use .overlay().

📌 Example:
struct ContentView: View {
    @State private var showModal = false
    @Environment(\.colorScheme) var colorScheme
    
    var body: some View {
        VStack {
            Button("Trigger Survey") {
                withAnimation(.spring()) {
                    showModal = true
                }
            }
        }
        .frame(maxWidth: .infinity, maxHeight: .infinity)
        .overlay(
            ArchSurvey(
                isPresented: $showModal,
                questionSet: Survey,
                customtheme: customTheme,
                onComplete: { results in
                    print(results)
                    // do something with your results here
                },
                userapiKey: "your-api-key-here",
                userID: "userID to Track Respondents"
            )
        )
    }
}