useDraggableScrollableController function

DraggableScrollableController useDraggableScrollableController({
  1. List<Object?>? keys,
})

Creates a DraggableScrollableController that will be disposed automatically.

See also:

Implementation

DraggableScrollableController useDraggableScrollableController({
  List<Object?>? keys,
}) {
  return use(_DraggableScrollableControllerHook(keys: keys));
}