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 5a3957f commit fd01812Copy full SHA for fd01812
packages/flutter/lib/src/gestures/converter.dart
@@ -278,6 +278,8 @@ class PointerEventConverter {
278
scale: datum.scale,
279
);
280
case ui.PointerSignalKind.unknown:
281
+ default: // ignore: no_default_cases, to allow adding a new [PointerSignalKind] - PointerStylusAuxiliaryAction
282
+ // TODO(louisehsu): remove after landing engine PR https://github.com/flutter/engine/pull/39637
283
// This branch should already have 'unknown' filtered out, but
284
// we don't want to return anything or miss if someone adds a new
285
// enumeration to PointerSignalKind.
0 commit comments