From 28d271ecfc876854fb521984a86afce996545d25 Mon Sep 17 00:00:00 2001 From: Youssef Attia <16466991+youssef-attia@users.noreply.github.com> Date: Mon, 27 Jun 2022 13:40:24 -0700 Subject: [PATCH] Updated positional parameter ordering for IndexedStack example (#106687) --- examples/api/lib/widgets/basic/indexed_stack.0.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/api/lib/widgets/basic/indexed_stack.0.dart b/examples/api/lib/widgets/basic/indexed_stack.0.dart index 6fb64a8991..feb260a1e5 100644 --- a/examples/api/lib/widgets/basic/indexed_stack.0.dart +++ b/examples/api/lib/widgets/basic/indexed_stack.0.dart @@ -72,7 +72,7 @@ class _MyStatefulWidgetState extends State { } }); }, - child: const Icon(key: Key('gesture1'), Icons.chevron_left), + child: const Icon(Icons.chevron_left, key: Key('gesture1')), ), Column( mainAxisAlignment: MainAxisAlignment.center, @@ -95,7 +95,7 @@ class _MyStatefulWidgetState extends State { } }); }, - child: const Icon(key: Key('gesture2'), Icons.chevron_right), + child: const Icon(Icons.chevron_right, key: Key('gesture2')), ), ], )