FSelectTile<T>.tile constructor
const
FSelectTile<T>.tile ({
- required Widget title,
- required T value,
- FItemStyle style()?,
- Widget checkedIcon,
- Widget uncheckedIcon,
- Widget? subtitle,
- Widget? details,
- String? semanticsLabel,
- bool? enabled,
- bool autofocus,
- FocusNode? focusNode,
- ValueChanged<
bool> ? onFocusChange, - ValueChanged<
bool> ? onHoverChange, - ValueChanged<
FWidgetStatesDelta> ? onStatesChange, - Map<
ShortcutActivator, Intent> ? shortcuts, - Map<
Type, Action< ? actions,Intent> > - Widget? suffix,
- Key? key,
Creates a FSelectTile with a prefix check icon.
This is identical to FSelectTile.new. It provides consistency with other FTileMixin members when using dot-shorthands.
Implementation
const factory FSelectTile.tile({
required Widget title,
required T value,
FItemStyle Function(FItemStyle)? style,
Widget checkedIcon,
Widget uncheckedIcon,
Widget? subtitle,
Widget? details,
String? semanticsLabel,
bool? enabled,
bool autofocus,
FocusNode? focusNode,
ValueChanged<bool>? onFocusChange,
ValueChanged<bool>? onHoverChange,
ValueChanged<FWidgetStatesDelta>? onStatesChange,
Map<ShortcutActivator, Intent>? shortcuts,
Map<Type, Action<Intent>>? actions,
Widget? suffix,
Key? key,
}) = FSelectTile<T>;