-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Closed
flutter/engine
#32223Labels
P0Critical issues such as a build break or regressionCritical issues such as a build break or regressiona: accessibilityAccessibility, e.g. VoiceOver or TalkBack. (aka a11y)Accessibility, e.g. VoiceOver or TalkBack. (aka a11y)a: text inputEntering text in a text field or keyboard related problemsEntering text in a text field or keyboard related problemscustomer: money (g3)frameworkflutter/packages/flutter repository. See also f: labels.flutter/packages/flutter repository. See also f: labels.platform-iosiOS applications specificallyiOS applications specifically
Description
Internal: b/221156034
return Scaffold(
appBar: AppBar(),
body: Column(children: [
TextField(
enabled: true,
enableInteractiveSelection: false,
),
TextField(
enabled: true,
enableInteractiveSelection: false,
)
]),
);Steps to reproduce:
- Enable accessibility mode
- Focus on the second text field, and enter some text (abcd)
- Swipe from bottom to top
- Expected: cannot move the cursor
- Actual: the accessibility focus is still on the second text field, and the cursor is moved (abc|d)
Metadata
Metadata
Assignees
Labels
P0Critical issues such as a build break or regressionCritical issues such as a build break or regressiona: accessibilityAccessibility, e.g. VoiceOver or TalkBack. (aka a11y)Accessibility, e.g. VoiceOver or TalkBack. (aka a11y)a: text inputEntering text in a text field or keyboard related problemsEntering text in a text field or keyboard related problemscustomer: money (g3)frameworkflutter/packages/flutter repository. See also f: labels.flutter/packages/flutter repository. See also f: labels.platform-iosiOS applications specificallyiOS applications specifically