Anik

Results 2 comments of Anik

I have the same problem. I don't think its related to a specific operating system, its a web app.

Use custom scroll behavior in your app's root material view ``` MaterialApp( scrollBehavior: MyCustomScrollBehavior(), debugShowCheckedModeBanner: false, useInheritedMediaQuery: true, locale: DevicePreview.locale(context), builder: DevicePreview.appBuilder, ); ``` ``` class MyCustomScrollBehavior extends MaterialScrollBehavior {...