Flutter – Overscroll on ListView when calling scrollController.animateTo
I have a ListView.builder like so: ListView.builder( key: _listViewKey, controller: widget.scrollController, shrinkWrap: true, scrollDirection: Axis.vertical, physics: const AlwaysScrollableScrollPhysics(), itemCount: state.items, itemBuilder: (context, index) { ... Additionally I have a scroll to the end method that uses the scrollController to call…