Reputation: 299
Is there any way to put the scrollbar in a Listview?
Upvotes: 6
Views: 6195
Reputation: 103351
Wrap your ListView
inside ScrollBar
widget
Scrollbar(
child: ListView(),
)
More info: https://docs.flutter.io/flutter/material/Scrollbar-class.html
Upvotes: 12