Select Menu Tile
A tile that, when triggered, displays a list of options for the user to pick from.
For desktop, a select group is generally recommended over this.
Usage
FSelectMenuTile(...)
FSelectMenuTile<Value>(
groupController: FMultiSelectGroupController(), // or FRadioSelectGroupController()
popoverController: FPopoverController(...),
divider: FTileDivider.indented,
menuAnchor: FMenuAnchor.bottomLeft,
tileAnchor: FTileAnchor.bottomLeft,
shift: FPortalFollowerShift.flip,
hideOnTapOutside: true,
ignoreDirectionPadding: true,
autoHide: false,
label: const Text('Sidebar'),
description: const Text('Select the items you want to display in the sidebar.'),
errorBuilder: (context, error) => Text(error),
prefixIcon: FIcon(FAssets.icons.bell),
title: Text('Notifications'),
subtitle: Text('subtitle'),
details: Text('All'),
suffixIcon: FIcon(FAssets.icons.chevronsUpDown),
menu: [
FSelectTile(
label: const Text('1'),
value: 1,
),
],
);