aagarwal1012/Liquid-Pull-To-Refresh

Don't support reverse List ?

baantatsu opened this issue · 2 comments

Need to implement chat like functionality where last list item stays at the bottom of the screen on initial load and newly loaded items are added on top of that.

@lipengda, for doing that you can simply reverse the list before giving input to listview.

Doesn't work
LiquidPullToRefresh( key: _refreshIndicatorKey, showChildOpacityTransition: false, onRefresh: _handleRefresh, child: ListView.builder( controller: _messageScrollController, reverse: true, ... ), )

displays not reverse list. Without LiquidPullToRefresh all work fine.