Skip to Content
Forui 0.11.0 is released 🎉
DocumentationFormSelect Group

Select Group

A group of items that allow users to make a selection from a set of options.

For touch devices, a select tile group or select menu tile is generally recommended over this.

Usage

FSelectGroup(...)

FSelectGroup<Value>( controller: FSelectGroupController(), // or FSelectGroupController.radio() label: const Text('Sidebar'), description: const Text('Select the items you want to display in the sidebar.'), onChange: (all) => print(all), onSelect: (selection) => print(selection), children: [ FCheckbox.grouped( value: Value.checkbox, label: const Text('Checkbox'), ), // or FRadio.grouped( value: Value.radio, label: const Text('Radio'), ), ], );

Examples

Checkbox Form

Radio Form

Last updated on