Search Docs…

Search Docs…

Guide

Creating a Survey

📝 Creating a Survey

You must define an array of questions using QuestionType.

🔹 Example Survey:
let Survey: [QuestionType] = [
    .binaryChoice(
        title: "Have you checked out our new feature?",
        subtitle: "",
        leftText: "Yes!",
        rightText: "Not yet"
    ),

    .steplessScale(
        title: "How fun has it been to use this new feature?",
        subtitle: "Slide the slider around to fit how you're feeling",
        emoji: "😍",
        buttonText: "Next"
    ),

    .singleChoice(

        title: "What interests you most about this feature?",
        subtitle: "Pick one",
        choices: [
            "Option 1",
            "Option 2",
            "Option 3",
            "Option 4"
        ]
    
    )

    .multipleChoice(
        title: "What interests you most about this feature?",
        subtitle: "Pick as many as you like",
        buttonText: "Continue",
        choices: [
            "Option 1",
            "Option 2",
            "Option 3",
            "Option 4"
        ]
    ),

    .freeText(
        title: "Anything else you'd love to tell us?",
        subtitle: "We’d love to hear your thoughts!",
        placeholder: "Your feedback...",
        buttonTitle: "Submit"
    ),

    .success(
        title: "Thanks for your input!",
        subtitle: "Your feedback helps us build better tools for you.",
        optInLabel: "Want updates on new features?",
        buttonText: "Finish"
    )
]
📌 QuestionType Breakdown

Type

Parameters

Description

.binaryChoice

title, subtitle, leftText, rightText

Yes/No question

.steplessScale

title, subtitle, emoji, buttonText

Scale from 1-10

.singleChoice

title, subtitle, choices

Select one option

.multipleChoice

title, subtitle, buttonText, choices

Select multiple options

.freeText

title, subtitle, placeholder, buttonTitle

Open-ended text response

.success

title, subtitle, optInLabel, buttonText

Optional final screen with optional opt-in