We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d766269 commit aee6af7Copy full SHA for aee6af7
packages/flutter/lib/src/gestures/converter.dart
@@ -268,6 +268,8 @@ class PointerEventConverter {
268
embedderId: datum.embedderId,
269
);
270
case ui.PointerSignalKind.unknown:
271
+ default: // ignore: no_default_cases, to allow adding new [PointerSignalKind]
272
+ // TODO(moffatman): Remove after landing https://github.com/flutter/engine/pull/36342
273
// This branch should already have 'unknown' filtered out, but
274
// we don't want to return anything or miss if someone adds a new
275
// enumeration to PointerSignalKind.
0 commit comments