From b052cfdba1ad36af03a3059c2a771c827bdacc70 Mon Sep 17 00:00:00 2001 From: Bartek Pacia Date: Wed, 4 Sep 2024 17:28:18 +0200 Subject: [PATCH] enable explicitChildNodes --- lib/nesting_screen.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/nesting_screen.dart b/lib/nesting_screen.dart index fc4d5b9..6133733 100644 --- a/lib/nesting_screen.dart +++ b/lib/nesting_screen.dart @@ -22,12 +22,14 @@ class _NestingScreenState extends State { 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, @@ -35,6 +37,7 @@ class _NestingScreenState extends State { children: [ Semantics( identifier: 'level-2', + explicitChildNodes: true, child: Container( color: Colors.orange, padding: padding,