Is there any way to put the scrollbar in a Listview?
Just change Column widget to ListView widget — and that's all. Your container becomes scrollable.
To scroll a Flutter ListView widget horizontally, set scrollDirection property of the ListView widget to Axis. horizontal. This arranges the items side by side horzontally. Following is the basic syntax to arrange the items horizontally in a ListView and scroll them horizontally.
Wrap your ListView
inside ScrollBar
widget
Scrollbar(
child: ListView(),
)
More info: https://docs.flutter.io/flutter/material/Scrollbar-class.html
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With