Fix the mouse scrolling issue when multiple scroll lists are nested.

This commit is contained in:
2025-04-05 17:45:29 +08:00
parent d91bca6913
commit 118941f239
2 changed files with 65 additions and 11 deletions

View File

@@ -942,7 +942,7 @@ class _ImageFavoritesState extends State<ImageFavorites> {
displayType = type;
});
await Future.delayed(const Duration(milliseconds: 20));
var scrollController = ScrollControllerProvider.of(context);
var scrollController = ScrollState.of(context).controller;
scrollController.animateTo(
scrollController.position.maxScrollExtent,
duration: const Duration(milliseconds: 200),