We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4fd121 commit 091db3bCopy full SHA for 091db3b
lib/src/common/observer_widget.dart
@@ -157,7 +157,9 @@ class ObserverWidgetState<
157
final isIgnoreInnerCanHandleObserve =
158
ScrollUpdateNotification != notification.runtimeType;
159
final platform = Theme.of(context).platform;
160
- if (kIsWeb || platform == TargetPlatform.windows || platform == TargetPlatform.macOS) {
+ if (kIsWeb ||
161
+ platform == TargetPlatform.windows ||
162
+ platform == TargetPlatform.macOS) {
163
// Getting bad observation result because scrolling in Flutter Web
164
// with mouse wheel is not smooth.
165
// https://github.com/flutter/flutter/issues/78708
0 commit comments