Pages
Introduction Colors & Tokens Icons
UI
Button Link Badge Notification Badge Alert Card Spinner Avatar Divider Empty State
Interactive
Modal Side Modal Dropdown Tooltip Accordion Tabs Flash Toast Support Button
Forms
Form Select Toggle Checkbox & Radio Text Fields Date & Time Fields
Layout
Navbar Sidebar Table Pagination Breadcrumbs Selector List
Utilities
Local Time
app_theme v1.39.1

Selector List

A list of titled rows with description and action slots — typically paired with toggles.

Usage

Email notifications
Receive a daily digest of activity.
SMS alerts
Instant alerts for critical events.
= app_theme_selector_list do |list|
  - list.with_item(title: "Email notifications", enabled: true) do |item|
    - item.with_description do
      Receive a daily digest of activity.
    - item.with_action do
      = app_theme_toggle :email_notifications, checked: true
  - list.with_item(title: "SMS alerts") do |item|
    - item.with_description do
      Instant alerts for critical events.
    - item.with_action do
      = app_theme_toggle :sms_alerts