disable scroll in listview flutter
ListView.builder(
physics: ClampingScrollPhysics(), // <----
// ...
disable scroll in listview flutter
ListView.builder(
physics: ClampingScrollPhysics(), // <----
// ...
how to scroll to a position in flutter listview
ItemScrollController _scrollController = ItemScrollController();
ScrollablePositionedList.builder(
itemScrollController: _scrollController,
itemCount: _myList.length,
itemBuilder: (context, index) {
return _myList[index];
},
)
_scrollController.scrollTo(index: 150, duration: Duration(seconds: 1));
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us