问题 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),