google / flutter.widgets

https://pub.dev/packages/flutter_widgets
BSD 3-Clause "New" or "Revised" License
1.38k stars 488 forks source link

Allow or expose scroll controller to be used outside. #528

Open CodeWizard0367 opened 6 months ago

CodeWizard0367 commented 6 months ago

I have complex widget where I need to use scroll controller's position at the same time I also need to use the scroll to index functionality with current implementation either I can use Listview with scroll controller to use scroll controller or I can use scrollable positioned list but in that case I am not able to use scroll controller.

It would be very helpful if we can pass the scroll controller from outside to utilise it in other places as well.