RadioButton
This page describes how to create radio buttons in MauiReactor
Group of radio buttons with string content
new VStack(spacing: 5)
{
new RadioButton("Radio 1"),
new RadioButton("Radio 2"),
new RadioButton("Radio 3"),
new RadioButton("Radio 4")
.IsChecked(true)
},
Group of radio buttons with custom content


Bonus tip: Radio buttons for an Enum

Last updated