listview scroll to bottom flutter code example
Example 1: android recyclerview scroll to bottom
recyclerView.scrollToPosition(list.size - 1)
// this might be helpful
layoutManager.reverseLayout = true
Example 2: disable scroll in listview flutter
ListView.builder(
physics: ClampingScrollPhysics(), // <----
// ...