merge static method

FTileGroup merge({
  1. required List<FTileGroupMixin> children,
  2. FTileGroupStyleDelta style = const .context(),
  3. ScrollController? scrollController,
  4. ScrollCacheExtent? scrollCacheExtent,
  5. double maxHeight = .infinity,
  6. DragStartBehavior dragStartBehavior = .start,
  7. ScrollPhysics physics = const ClampingScrollPhysics(),
  8. bool? enabled,
  9. bool? intrinsicWidth,
  10. FItemDivider divider = .full,
  11. String? semanticsLabel,
  12. Widget? label,
  13. Widget? description,
  14. Widget? error,
  15. 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,
  FTileGroupStyleDelta style = const .context(),
  ScrollController? scrollController,
  ScrollCacheExtent? scrollCacheExtent,
  double maxHeight = .infinity,
  DragStartBehavior dragStartBehavior = .start,
  ScrollPhysics physics = const ClampingScrollPhysics(),
  bool? enabled,
  bool? intrinsicWidth,
  FItemDivider divider = .full,
  String? semanticsLabel,
  Widget? label,
  Widget? description,
  Widget? error,
  Key? key,
}) => .merge(
  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,
);