FResizableController constructor
FResizableController({
- void onResizeUpdate(
- List<
FResizableRegionData> resized
- List<
- void onResizeEnd(
- List<
FResizableRegionData> resized
- List<
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;