Checkbox & Radio
Tag helpers matching Rails naming:
app_theme_check_box_tag
and
app_theme_radio_button_tag
. Keep them atomic and compose groups yourself.
Checkboxes
.demo-stack
= app_theme_check_box_tag "channels[]", "email", checked: true, label: "Email"
= app_theme_check_box_tag "channels[]", "sms", label: "SMS"
= app_theme_check_box_tag "channels[]", "push", label: "Push notifications"Radio buttons
.demo-stack
= app_theme_radio_button_tag :plan, "free", checked: true, label: "Free plan"
= app_theme_radio_button_tag :plan, "pro", label: "Pro plan"
= app_theme_radio_button_tag :plan, "enterprise", label: "Enterprise"