When I user isRadio=true I expect the options to be rendered with all button unselected. That would match how radio buttons work in HTML for example.
Right now, the first option is selected. In the example below, button A is selected automatically.
GroupButton(
isRadio: true,
spacing: 10,
onSelected: (index, isSelected) => setState(
() => choiceSelectionOutput = widget.optionsOutputText[index]),
buttons: ["A","B", "C"]
)
When I user isRadio=true I expect the options to be rendered with all button unselected. That would match how radio buttons work in HTML for example.
Right now, the first option is selected. In the example below, button A is selected automatically.