Checkbox indicator (default)

Card-style selection with icon boxes

<RadioGroup Items="@planItems" @bind-SelectedValue="selectedPlan" /> @code { private string? selectedPlan = "starter"; private List<RadioGroup.RadioGroupItem> planItems = new() { new() { Value = "starter", Text = "Starter plan", SubText = "$10/month", Description = "Up to 10 users, 20GB storage, email support." }, new() { Value = "business", Text = "Business plan", SubText = "$25/month", Description = "Up to 50 users, 100GB storage, priority email support." }, new() { Value = "enterprise", Text = "Enterprise plan", SubText = "$50/month", Description = "Unlimited users, dedicated support, SLA." }, }; }

Radio indicator

Classic radio button with leading dot

<RadioGroup Items="@notificationItems" Indicator="radio" @bind-SelectedValue="selectedNotification" />

Sizes

sm and md

<RadioGroup Items="@sizeItems" Size="sm" @bind-SelectedValue="selectedSizeSm" /> <RadioGroup Items="@sizeItems" Size="md" @bind-SelectedValue="selectedSizeMd" />

Disabled

Global and per-item disabled

@* Disable the entire group *@ <RadioGroup Items="@planItems" Disabled="true" SelectedValue="@starter" /> @* Or disable individual items via RadioGroupItem.Disabled = true *@ disabledItems = new() { new() { Value = "standard", Text = "Standard shipping" }, new() { Value = "overnight", Text = "Overnight", Disabled = true }, };

With descriptions

Rich multi-line options

descriptionItems = new() { new() { Value = "personal", Text = "Personal", Description = "For individual use with basic features." }, new() { Value = "team", Text = "Team", Description = "Collaborate with your team. Shared workspaces, 100GB storage." }, }; <RadioGroup Items="@descriptionItems" Indicator="radio" @bind-SelectedValue="selectedDesc" />
An unhandled error has occurred. Reload 🗙

Rejoining the server...

Rejoin failed... trying again in seconds.

Failed to rejoin.
Please retry or reload the page.

The session has been paused by the server.

Failed to resume the session.
Please retry or reload the page.