mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
Updated positional parameter ordering for IndexedStack example (#106687)
This commit is contained in:
parent
21841d7e35
commit
28d271ecfc
@ -72,7 +72,7 @@ class _MyStatefulWidgetState extends State<MyStatefulWidget> {
|
||||
}
|
||||
});
|
||||
},
|
||||
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<MyStatefulWidget> {
|
||||
}
|
||||
});
|
||||
},
|
||||
child: const Icon(key: Key('gesture2'), Icons.chevron_right),
|
||||
child: const Icon(Icons.chevron_right, key: Key('gesture2')),
|
||||
),
|
||||
],
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user