Radio
Single selection from multiple options.
Installation
bash
flutter_studio add radiobash
flutter pub add flutter_studioUsage
dart
CustomRadio<String>(
label: 'Option 1',
value: 'option1',
groupValue: selectedOption,
onChanged: (value) {
setState(() {
selectedOption = value;
});
},
)API Reference
Properties
| Property | Type | Default | Description |
|---|---|---|---|
value | T | required | Value of this radio button |
groupValue | T? | null | Currently selected value |
