-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Closed
flutter/engine
#55152Labels
P1High-priority issues at the top of the work listHigh-priority issues at the top of the work lista: 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: castawayfound in release: 3.19Found to occur in 3.19Found to occur in 3.19found in release: 3.20Found to occur in 3.20Found to occur in 3.20has reproducible stepsThe issue has been confirmed reproducible and is ready to work onThe issue has been confirmed reproducible and is ready to work onplatform-webWeb applications specificallyWeb applications specificallyteam-webOwned by Web platform teamOwned by Web platform teamtriaged-webTriaged by Web platform teamTriaged by Web platform team
Description
Steps to reproduce
- Run a web app in semantics mode and render a
TextFieldwith anInputDecoratorthat haserrorText - Attempt to click into
TextField
Expected results
- Mobile keyboard pops up, allows us to type.
Actual results
- Mobile keyboard doesn't pop up.
Code sample
Code sample
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
void main() {
runApp(const App());
SemanticsBinding.instance.ensureSemantics();
}
class App extends StatelessWidget {
const App({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: TextDecorationExample(),
);
}
}
class TextDecorationExample extends StatelessWidget {
const TextDecorationExample({super.key});
@override
Widget build(BuildContext context) {
return const Scaffold(
body: Column(
children: [
TextField(
decoration: InputDecoration(
errorText: 'error',
),
),
],
),
);
}
}Flutter Doctor output
Doctor output
[✓] Flutter (Channel master, 3.19.0-6.0.pre, on macOS 14.2.1 23C71
darwin-arm64, locale en-US)emma-roudabush-disney, rkunboxed, campcoxconsultants, MMecoy-Ardley, rayliverified and 1 more
Metadata
Metadata
Assignees
Labels
P1High-priority issues at the top of the work listHigh-priority issues at the top of the work lista: 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: castawayfound in release: 3.19Found to occur in 3.19Found to occur in 3.19found in release: 3.20Found to occur in 3.20Found to occur in 3.20has reproducible stepsThe issue has been confirmed reproducible and is ready to work onThe issue has been confirmed reproducible and is ready to work onplatform-webWeb applications specificallyWeb applications specificallyteam-webOwned by Web platform teamOwned by Web platform teamtriaged-webTriaged by Web platform teamTriaged by Web platform team