fix: character selection order (#383)

pull/386/head
Jorge Coca 3 years ago committed by GitHub
parent 4a3e9f7abc
commit 95a35cf1c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -69,9 +69,9 @@ class _CharacterGrid extends StatelessWidget {
child: Column( child: Column(
children: [ children: [
_Character( _Character(
key: const Key('sparky_character_selection'), key: const Key('dash_character_selection'),
character: const SparkyTheme(), character: const DashTheme(),
isSelected: state.isSparkySelected, isSelected: state.isDashSelected,
), ),
const SizedBox(height: 6), const SizedBox(height: 6),
_Character( _Character(
@ -87,9 +87,9 @@ class _CharacterGrid extends StatelessWidget {
child: Column( child: Column(
children: [ children: [
_Character( _Character(
key: const Key('dash_character_selection'), key: const Key('sparky_character_selection'),
character: const DashTheme(), character: const SparkyTheme(),
isSelected: state.isDashSelected, isSelected: state.isSparkySelected,
), ),
const SizedBox(height: 6), const SizedBox(height: 6),
_Character( _Character(

Loading…
Cancel
Save