merge static method
FTileGroup
merge({
- required List<
FTileGroupMixin> children, - FTileGroupStyle style(
- FTileGroupStyle style
- ScrollController? scrollController,
- double? cacheExtent,
- double maxHeight = .infinity,
- DragStartBehavior dragStartBehavior = .start,
- ScrollPhysics physics = const ClampingScrollPhysics(),
- bool? enabled,
- FItemDivider divider = .full,
- String? semanticsLabel,
- Widget? label,
- Widget? description,
- Widget? error,
- Key? key,
Creates a FTileGroup that merges multiple FTileGroupMixins together.
All group labels will be ignored.
This function is a shorthand for FTileGroup.merge.
Implementation
static FTileGroup merge({
required List<FTileGroupMixin> children,
FTileGroupStyle Function(FTileGroupStyle style)? style,
ScrollController? scrollController,
double? cacheExtent,
double maxHeight = .infinity,
DragStartBehavior dragStartBehavior = .start,
ScrollPhysics physics = const ClampingScrollPhysics(),
bool? enabled,
FItemDivider divider = .full,
String? semanticsLabel,
Widget? label,
Widget? description,
Widget? error,
Key? key,
}) => .merge(
style: style,
scrollController: scrollController,
cacheExtent: cacheExtent,
maxHeight: maxHeight,
dragStartBehavior: dragStartBehavior,
physics: physics,
enabled: enabled,
divider: divider,
semanticsLabel: semanticsLabel,
label: label,
description: description,
error: error,
key: key,
children: children,
);