You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the new version of Flutter 2, stable web apps are created. One of the most interesting things is the interactive scrollbar that can be dragged with the mouse. The idea is to add smart mouse scrolling via Scrollbar for desktop devices and use the default package scrolling for mobile devices.
A simple solution would be to recognize a desktop by screen size.
A more complex solution could be to recognize a desktop from the pointing device via MouseRegion ()
This is a possible implementation via MediaQuery() in vertical_zoom.dart:
With the new version of Flutter 2, stable web apps are created. One of the most interesting things is the interactive scrollbar that can be dragged with the mouse. The idea is to add smart mouse scrolling via Scrollbar for desktop devices and use the default package scrolling for mobile devices.
A simple solution would be to recognize a desktop by screen size.
A more complex solution could be to recognize a desktop from the pointing device via MouseRegion ()
This is a possible implementation via MediaQuery() in vertical_zoom.dart:
The result:
The text was updated successfully, but these errors were encountered: