ListView(children: <Widget>[
Container(...),
Container(...), #scroll for example to this container
Container(...)
]);
When the screen loads, how to scroll to a specific position to show the user.
I notice in the section view class
_controller.sliverController.jumpToIndex(item.mapIndex);
It has a controller for the specific index.
But i can't access the method in this class.
When the screen loads, how to scroll to a specific position to show the user.
I notice in the section view class
_controller.sliverController.jumpToIndex(item.mapIndex);It has a controller for the specific index.
But i can't access the method in this class.