group static method
FTileGroup
group({
- required List<
FTileMixin> children, - FTileGroupStyleDelta style = const .context(),
- ScrollController? scrollController,
- ScrollCacheExtent? scrollCacheExtent,
- double maxHeight = .infinity,
- DragStartBehavior dragStartBehavior = .start,
- ScrollPhysics physics = const ClampingScrollPhysics(),
- bool? enabled,
- bool? intrinsicWidth,
- FItemDivider divider = .indented,
- String? semanticsLabel,
- Widget? label,
- Widget? description,
- Widget? error,
- Key? key,
Creates a FTileGroup.
This function is a shorthand for FTileGroup.new.
Implementation
static FTileGroup group({
required List<FTileMixin> children,
FTileGroupStyleDelta style = const .context(),
ScrollController? scrollController,
ScrollCacheExtent? scrollCacheExtent,
double maxHeight = .infinity,
DragStartBehavior dragStartBehavior = .start,
ScrollPhysics physics = const ClampingScrollPhysics(),
bool? enabled,
bool? intrinsicWidth,
FItemDivider divider = .indented,
String? semanticsLabel,
Widget? label,
Widget? description,
Widget? error,
Key? key,
}) => .new(
style: style,
scrollController: scrollController,
scrollCacheExtent: scrollCacheExtent,
maxHeight: maxHeight,
dragStartBehavior: dragStartBehavior,
physics: physics,
enabled: enabled,
intrinsicWidth: intrinsicWidth,
divider: divider,
semanticsLabel: semanticsLabel,
label: label,
description: description,
error: error,
key: key,
children: children,
);