Auto scrollable list in a flutter
Today we talking about auto scrollable list. In daily life, we use list and list-specific widgets like
column, listview, and more. Normally we add items to the list one by one, to see the last item we
scroll the list to the maximum. but this must be lengthy work with the use of an auto scrollable list we
make it easy to use.
--------------------------------------------------------------------------------------------------------------------------
How does it work. ?
When we add an item in an auto scrollable list. The list scroll to its maximum item(last index).
---------------------------------------------------------------------------------------------------------------------------
Let's start to create an auto scrollable list.
1. First, you have a list and Text Input Field to add items to the list.
2. Make a listview builder widget.
3. Initialize the variable with scrollController.
See the picture below for the remaining process.
In the picture, there has an _autoChatScroll function that calls after when the item was added in the list.
This function helps to scroll to the maximum item on list.