I'm building a website using Flutter Web, but when I scroll using the mouse scroll wheel, it doesn’t feel smooth it’s kind of laggy or jumpy compared to websites built with React or standard HTML/CSS.
I’ve tried using a SingleChildScrollView and even wrapping my content in a ScrollConfiguration, but the scroll behavior still feels rough.
Is there a way to make mouse wheel scrolling smoother in Flutter Web, similar to how scrolling feels on React-based or native web pages?
What I want:
Smooth scrolling experience using the mouse wheel
Works consistently across browsers
my code :-
WebSmoothScroll( scrollAnimationLength: 800, scrollSpeed: 1.5, controller: _scrollController, child: SingleChildScrollView( physics: const NeverScrollableScrollPhysics(), controller: _scrollController, child: ScrollTransformView( children: [ ScrollTransformItem(