Selectable elements and groups

Selectable elements are flow elements that users can tap to select or deselect. Their state can drive navigation, visibility, and other logic across the flow. Here’s what you can do:

Default selectable elements

Some element types are selectable by default — they already belong to auto-created groups and don’t need additional setup:

  • Quiz options: Each quiz answer is a selectable element within the quiz group. See Quizzes.
  • Products: Product cards in a product group. See Product block.
  • Tabs: Tab items within a tab group. See Tabs.
  • Trial toggles: A container that belongs to a group and gets a selected state. See Toggles.

Make an element selectable

In some cases, you might want to make additional elements selectable. For example, you can add a Don’t ask me again checkbox that operates as an element inside a quiz group.

To make an element selectable:

  1. Select the element on the screen or in the Layers panel.
  2. On the right, switch to the Interactions panel.
  3. Select Turn into selectable element.
Turn into selectable element option in the Interactions panel
  1. In the Group dropdown, select an existing group or create a new one.
  2. Set the Element ID — a unique identifier for this element within the group.
  3. If you want this element to be selected by default, select the Set as default in group checkbox.
Selectable element settings with Group dropdown, Element ID, and Set as default checkbox

Create a group

Groups organize selectable elements on a screen and define how selection works — whether users can pick one option, multiple options, or toggle.

To create a group:

  1. Select an element and make it selectable.
  2. In the Group dropdown, select Create group.
Create group option in the Group dropdown
  1. Enter a Group name.
  2. Select the group type.

The group is now available in the Group dropdown for other selectable elements on the same screen.

Create group settings with Group name and group type selector

Group types

Most quiz presets are multi-choice by default. Change the group type to allow only one answer.

  • Single choice: Only one element in the group can be selected at a time. Selecting a new element deselects the previous one.
  • Multi-choice: Multiple elements can be selected at the same time.
  • Toggle: Each element switches between selected and deselected on each tap, independently of other elements.

Manage groups

To view and edit groups, open the Screen settings panel and find the Selectable groups section. It lists all groups on the current screen.

Click a group ID to:

  • Change the group ID
  • Change the group type
  • See how group elements are referenced in conditions
Edit selectable group in the Screen settings panel

Use selectable state in conditions

You can reference a group’s selected state in conditions on any screen in the flow — not just the screen where the group is defined. For example: IF quiz.photo is selected, THEN navigate to the Photo screen.

All elements in a group must be on the same screen. You cannot add elements from different screens to one group. However, you can reference group values in conditions on any screen in the flow.

Use selectable state with:

  • Conditional actions: Route users to different screens or trigger different actions based on selected elements.
  • Dynamic navigation: Branch the flow based on quiz answers, toggle states, or other selections.
  • Conditional visibility: Show or hide elements based on what users selected on previous screens.