'Flutter - ListView.builder: Initial scroll position
I want to setup the initial scroll position of a ListView.builder, I want the list to start at the bottom 0.0
If I setup reverse on the listView of course I get the initial scroll position to be the desired one, but what I need is to have the last children on the bottom, is a chat app.
This is the list builder, MessageItem() is the chat message
ListView.builder(
shrinkWrap: true,
controller: _scrollController,
itemCount: snapshot.data.documents.length,
padding: EdgeInsets.all(10.0),
itemBuilder: (BuildContext context, int index) =>
MessageItem(
index: index,
document: snapshot.data.documents[index],
myId: myId));
This is the animation I have when someone send the message
_scrollController.animateTo(
_scrollController.position.maxScrollExtent,
duration: const Duration(milliseconds: 500),
curve: Curves.easeOut);
the animation works okay.
What I want is the list scroll position to be already at the bottom when the user enters the chat room.
Solution 1:[1]
You can set one of ScrollController's property: initialScrollOffset
But on the condition that you know the offset position of the target item/index.
ScrollController _controller = ScrollController(initialScrollOffset: itemHeight * index)
(note that this example assumes that the sizes of your list's widgets are of constant size, but if you don't have constant widget sizes in your list, then you must be able to calculate the final offset position of your target item - and that is a whole other issue)
Or, if you want it to always be the last item/index, then it's much easier:
ScrollController _controller = ScrollController(initialScrollOffset: _controller.position.maxScrollExtent)
Solution 2:[2]
for avoid error where scroll isnt attached for any list, use, WidgetsBinding to pullout after build is ready.
void _scrollToBottom() {
if (_scrollController.hasClients) {
_scrollController.animateTo(_scrollController.position.maxScrollExtent,
duration: Duration(milliseconds: 300), curve: Curves.elasticOut);
} else {
Timer(Duration(milliseconds: 400), () => _scrollToBottom());
}
}
@override
Widget build(BuildContext context) {
WidgetsBinding.instance.addPostFrameCallback((_) => _scrollToBottom());
{...} //rest of code;
}
Solution 3:[3]
The solution for me was:
SingleChildScrollView(
reverse: true,
child: Container(),
),
ListView has also reverse property.
Solution 4:[4]
I feel your pain as it is an essential requirement because there could be tens of thousands of messages in a single chat.
To tackle that you can use
SchedulerBinding.instance.addPostFrameCallback((_){});
This callback is fired right after the widget tree is built, so you can just
scrollController.jump(scrollController.position.maxScrollExtent);
That however won't work if you have messages appear asynchronously, that is, after the initstate with some function that pulls it off from firestore document for instance. In this case you will first need for them to load, and only then do the steps above. Hope this helps.
Solution 5:[5]
There is something simple assume that you are getting a list from API in future builder and returning the listview.builder
snapshot.data.length-index-1
remove the reverse property from the listview.builder
Solution 6:[6]
You can also simply use the FixedExtentScrollController for same size items with the index of your initialItem :
controller: FixedExtentScrollController(initialItem: itemIndex);
The documentation : Creates a scroll controller for scrollables whose items have the same size.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | TWL |
| Solution 2 | |
| Solution 3 | CarlosMacMar |
| Solution 4 | Zhangir Siranov |
| Solution 5 | Osama Buzdar |
| Solution 6 |
