Skip to content

Commit

Permalink
enable explicitChildNodes
Browse files Browse the repository at this point in the history
  • Loading branch information
bartekpacia committed Sep 4, 2024
1 parent 11035a0 commit b052cfd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/nesting_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,22 @@ class _NestingScreenState extends State<NestingScreen> {
children: [
Semantics(
identifier: 'level-0',
explicitChildNodes: true,
child: Container(
padding: padding,
child: Stack(
children: [
Semantics(
identifier: 'level-1',
explicitChildNodes: true,
child: Container(
color: Colors.blue,
padding: padding,
child: Stack(
children: [
Semantics(
identifier: 'level-2',
explicitChildNodes: true,
child: Container(
color: Colors.orange,
padding: padding,
Expand Down

0 comments on commit b052cfd

Please sign in to comment.