DocumentationSelect Group

Select Group

A set of items that are treated as a single selection.

Usage

FSelectGroup(...)

FSelectGroup<Value>(
  controller: FMultiSelectGroupController(), // or FRadioSelectGroupController()
  label: const Text('Sidebar'),
  description: const Text('Select the items you want to display in the sidebar.'),
  items: [
    FSelectGroupItem.checkbox(
      value: Value.checkbox,
      label: const Text('Checkbox'),
    ),
    // or
    FSelectGroupItem.radio(
      value: Value.radio,
      label: const Text('Radio'),
    ),
  ],
);

Examples

Checkbox Form

Radio Form