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