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 21841d7 commit 28d271eCopy full SHA for 28d271e
examples/api/lib/widgets/basic/indexed_stack.0.dart
@@ -72,7 +72,7 @@ class _MyStatefulWidgetState extends State<MyStatefulWidget> {
72
}
73
});
74
},
75
- child: const Icon(key: Key('gesture1'), Icons.chevron_left),
+ child: const Icon(Icons.chevron_left, key: Key('gesture1')),
76
),
77
Column(
78
mainAxisAlignment: MainAxisAlignment.center,
@@ -95,7 +95,7 @@ class _MyStatefulWidgetState extends State<MyStatefulWidget> {
95
96
97
98
- child: const Icon(key: Key('gesture2'), Icons.chevron_right),
+ child: const Icon(Icons.chevron_right, key: Key('gesture2')),
99
100
],
101
)
0 commit comments