dyn_mouse_scroll
すべてのプラットフォームでマウスによるスムーズなスクロールを可能にする、スクロール可能なウィジェット用のラッパー。
Flutterパッケージ。すべてのプラットフォームでマウスによるスムーズスクロールを可能にする、スクロール可能なウィジェット用のラッパーです。
{"sdk":"flutter"}^6.0.3^2.0.4{"sdk":"flutter"}^2.0.0以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。
A wrapper for scrollable widgets that enables smooth scrolling with a mouse on all platforms.
First gif: Scrolling slowly.
Second gif: Scrolling quickly (flick scroll).
Third gif: Mobile drag scroll detected, physics change.
https://raw.githubusercontent.com/Bluebar1/dyn_mouse_scroll/main/assets/slow_scroll.gif https://raw.githubusercontent.com/Bluebar1/dyn_mouse_scroll/main/assets/fast_scroll.gif https://raw.githubusercontent.com/Bluebar1/dyn_mouse_scroll/main/assets/drag_scroll.gif
DynMouseScroll(
builder: (context, controller, physics) => ListView(
controller: controller,
physics: physics,
children: ...
)
)
Flutter does not animate smooth scrolls for pointers, causing choppy experiences for the end user. One package, web_smooth_scroll, attempts to fix this problem by disabling default scrolling entirely (mobile can't drag now) and listening for pointer events to animate the scroll controller that can only move at one speed.
To allow mobile default scrolling to still be accessible I detect the user's platform and automatically update if the detection was wrong. When the user scrolls, the 'futurePosition' variable is updated and the animation is started.