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 7d560fd commit 406a86fCopy full SHA for 406a86f
lib/widgets/home.dart
@@ -132,10 +132,11 @@ class _HomePageState extends State<HomePage> {
132
body: Stack(
133
children: [
134
for (final (tab, body) in pageBodies)
135
- // TODO(#535): Decide if we find it helpful to use something like
136
- // [SemanticsProperties.namesRoute] to structure this UI better
137
- // for screen-reader software.
138
- Offstage(offstage: tab != _tab.value, child: body),
+ Offstage(
+ offstage: tab != _tab.value,
+ child: Semantics(
+ namesRoute: true,
139
+ child: body))
140
]),
141
bottomNavigationBar: DecoratedBox(
142
decoration: BoxDecoration(
0 commit comments