FResizableController constructor

FResizableController({
  1. void onResizeUpdate(
    1. List<FResizableRegionData> resized
    )?,
  2. void onResizeEnd(
    1. List<FResizableRegionData> resized
    )?,
})

Creates a FResizableController.

onResizeUpdate is called while a resizable region and its neighbours are being resized. Most users should prefer onResizeEnd, which is called only after the regions have bee resized.

onResizeEnd is called after a resizable region and its neighbours have been resized.

See https://forui.dev/docs/layout/resizable#no-cascading for a working example.

Implementation

factory FResizableController({
  void Function(List<FResizableRegionData> resized)? onResizeUpdate,
  void Function(List<FResizableRegionData> resized)? onResizeEnd,
}) = _ResizableController;