functions

RadioButton
Edited: Sunday 25 January 2026

RadioButton

Category: Components
File: form.go
Package: ui

Signature

1func RadioButton(label string, selected bool, btn *Clickable) W

Description

RadioButton renders a single radio button with label

Examples

RadioButton

1{
2	btn := &Clickable{}
3	_ = RadioButton("Option A", true, btn)
4}

Example Output


This documentation is auto-generated. To update, run make docs

Backlinks