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.
Read moreHow do you scroll on flutter web app?
Adding the scrollbar to your webpage requires a few mandatory steps:
Read moreHow do I make flutter Web scrollable?
To achieve the scroll requirements, we will do the following:
Read moreWhat is Scrollbar in flutter?
By default, scrollable widgets in Flutter don’t show a scrollbar. To add a scrollbar to a ScrollView, wrap the scroll view widget in a Scrollbar widget. Using this widget we can scroll a widget. The scrollbar allows the user to jump into the particular points and also shows how far the user reaches .
Read more