diff --git a/bin/internal/engine.version b/bin/internal/engine.version index bf5a73c430..600d80a767 100644 --- a/bin/internal/engine.version +++ b/bin/internal/engine.version @@ -1 +1 @@ -299eb3e710c14dfa73afbb9c345a32056b4b699c +67abe7f9a9e4e6497dcbb1c92335394cb630020c diff --git a/packages/flutter_test/lib/src/matchers.dart b/packages/flutter_test/lib/src/matchers.dart index 43c763af4d..eb69b9ecce 100644 --- a/packages/flutter_test/lib/src/matchers.dart +++ b/packages/flutter_test/lib/src/matchers.dart @@ -483,6 +483,7 @@ Matcher matchesSemantics({ bool hasMoveCursorBackwardByCharacterAction = false, bool hasMoveCursorForwardByWordAction = false, bool hasMoveCursorBackwardByWordAction = false, + bool hasSetTextAction = false, bool hasSetSelectionAction = false, bool hasCopyAction = false, bool hasCutAction = false, @@ -546,6 +547,7 @@ Matcher matchesSemantics({ if (hasDismissAction) SemanticsAction.dismiss, if (hasMoveCursorForwardByWordAction) SemanticsAction.moveCursorForwardByWord, if (hasMoveCursorBackwardByWordAction) SemanticsAction.moveCursorBackwardByWord, + if (hasSetTextAction) SemanticsAction.setText, ]; SemanticsHintOverrides? hintOverrides; if (onTapHint != null || onLongPressHint != null) diff --git a/packages/flutter_test/test/matchers_test.dart b/packages/flutter_test/test/matchers_test.dart index 2077135c21..7efaf76531 100644 --- a/packages/flutter_test/test/matchers_test.dart +++ b/packages/flutter_test/test/matchers_test.dart @@ -608,6 +608,7 @@ void main() { hasMoveCursorBackwardByCharacterAction: true, hasMoveCursorForwardByWordAction: true, hasMoveCursorBackwardByWordAction: true, + hasSetTextAction: true, hasSetSelectionAction: true, hasCopyAction: true, hasCutAction: true,