Skip to content

Commit b052cfd

Browse files
committed
enable explicitChildNodes
1 parent 11035a0 commit b052cfd

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lib/nesting_screen.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,22 @@ class _NestingScreenState extends State<NestingScreen> {
2222
children: [
2323
Semantics(
2424
identifier: 'level-0',
25+
explicitChildNodes: true,
2526
child: Container(
2627
padding: padding,
2728
child: Stack(
2829
children: [
2930
Semantics(
3031
identifier: 'level-1',
32+
explicitChildNodes: true,
3133
child: Container(
3234
color: Colors.blue,
3335
padding: padding,
3436
child: Stack(
3537
children: [
3638
Semantics(
3739
identifier: 'level-2',
40+
explicitChildNodes: true,
3841
child: Container(
3942
color: Colors.orange,
4043
padding: padding,

0 commit comments

Comments
 (0)