nivla360
nivla360

Reputation: 1129

How to add ScrollController to SliverList flutter

I can add ScrollController to a ListView. I was trying to do the same for SliverList but I realized there is no parameter to add a controller. Is there any other way I can achieve this? Thank you.

Upvotes: 11

Views: 6844

Answers (1)

AbdulAziz Umar
AbdulAziz Umar

Reputation: 433

You cannot add it to a SliverList, you can however, add the controller to your parent CustomScrollView. The SliverList comes inside the CustomScrollView and should give you the effect you want. As you can see in the screenshot, you can add a controller to your CustomScrollView.

enter image description here

Upvotes: 18

Related Questions