-
Notifications
You must be signed in to change notification settings - Fork 29.8k
Closed
Labels
P2Important issues not at the top of the work listImportant issues not at the top of the work lista: accessibilityAccessibility, e.g. VoiceOver or TalkBack. (aka a11y)Accessibility, e.g. VoiceOver or TalkBack. (aka a11y)a: desktopRunning on desktopRunning on desktopcustomer: googleVarious Google teamsVarious Google teamsengineflutter/engine related. See also e: labels.flutter/engine related. See also e: labels.from: a11y reviewReported by an accessibility review teamReported by an accessibility review teamplatform-windowsBuilding on or for Windows specificallyBuilding on or for Windows specificallyteam-windowsOwned by the Windows platform teamOwned by the Windows platform team
Description
See b/251178462
Steps to Reproduce
- On Windows machine, turn on NVDA/JAWS
- Execute
flutter runwith the code sample - Press shortcut key
H
Expected results:
3. The heading (Appbar title) should be read out
Actual results:
3. Only "H" is read out instead of the title
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
// Auto-enable accessibility for our Blind and Low Vision customers (see
// https://docs.flutter.dev/development/accessibility-and-localization/accessibility#screen-readers).
RendererBinding.instance.setSemanticsEnabled(true);
return MaterialApp(
title: 'My Flutter App',
home: Scaffold(
appBar: AppBar(
title: const Text('My Flutter Windows App'),
),
body: Center(
child: Column(
children: const [
Text('This is the first line.'),
Text('This is the second line.'),
],
),
),
),
);
}
}Metadata
Metadata
Assignees
Labels
P2Important issues not at the top of the work listImportant issues not at the top of the work lista: accessibilityAccessibility, e.g. VoiceOver or TalkBack. (aka a11y)Accessibility, e.g. VoiceOver or TalkBack. (aka a11y)a: desktopRunning on desktopRunning on desktopcustomer: googleVarious Google teamsVarious Google teamsengineflutter/engine related. See also e: labels.flutter/engine related. See also e: labels.from: a11y reviewReported by an accessibility review teamReported by an accessibility review teamplatform-windowsBuilding on or for Windows specificallyBuilding on or for Windows specificallyteam-windowsOwned by the Windows platform teamOwned by the Windows platform team
Type
Projects
Status
Done