For the complete documentation index, see llms.txt. This page is also available as Markdown.
RadioButton
This page describes how to create radio buttons in MauiReactor
The .NET Multi-platform App UI (.NET MAUI) RadioButton is a type of button that allows users to select one option from a set. Each option is represented by one radio button, and you can only select one radio button in a group.
public VisualNode RadioButtonsEnum<T>() where T : struct, System.Enum
{
return new VStack
{
Enum.GetValues<T>()
.Select(_=> new RadioButton(_.ToString()))
};
}