0 purchases
simple radio group
Simple radio group #
It's simple, support form validator and controller.
Usage #
SimpleRadioGroup<String>(
direction: Axis.horizontal,
validator: (String? option) {
if (option == null) {
return "Required";
}
return null;
},
options: const [
"Option 1",
"Option 2",
"Options 3",
],
)
copied to clipboard
Author #
[email protected]
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.