I am trying to do auto scrolling in flutter but it seems there is too little information to do.
I am building some card like this
Container(
child: Column(children: prepareCardWidgets(match[index]))
)
List<Widget> prepareCardWidgets(data) {
List<Widget> widgets = [];
data.forEach((item) {
widgets.add(UpcomingMatchesCards(item));
});
return widgets;
}
in item
variable there are some variable called item.round
and it's value is integer. I want to auto scroll on page load to any round dynamically.
How can I do it in this case?
Thank you so much.