DocumentationTileSelect Tile Group

Select Tile Group

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

For desktop, a select group is generally recommended over this.

Usage

FSelectTileGroup(...)

FSelectTileGroup<Value>(
  controller: FMultiSelectGroupController(), // or FRadioSelectGroupController()
  label: const Text('Sidebar'),
  description: const Text('Select the items you want to display in the sidebar.'),
  divider: FTileDivider.indented,
  items: [
    FSelectTile(
      label: const Text('1'),
      value: 1,
    ),
  ],
);

Examples

Behavior

Multi-value Form

Radio Form

Appearance

Suffix Icon

Full Divider

No Divider