scrollController property

ScrollController? scrollController
final

ScrollController to get the current scroll position. Important for calculations!

This controller has to be assigned if the returned widget of builder is scrollable. Every GridView is scrollable by default.

So usually, you should assign the controller to the ReorderableBuilder and to your GridView.

Implementation

final ScrollController? scrollController;