KKG
KKG

Reputation: 299

Flutter Listview with scrollbar

Is there any way to put the scrollbar in a Listview?

enter image description here

Upvotes: 6

Views: 6195

Answers (1)

diegoveloper
diegoveloper

Reputation: 103351

Wrap your ListView inside ScrollBar widget

Scrollbar(
  child: ListView(),
)

More info: https://docs.flutter.io/flutter/material/Scrollbar-class.html

Upvotes: 12

Related Questions