From 95a35cf1c8cc902969fcee6947b0f6128c5ac126 Mon Sep 17 00:00:00 2001 From: Jorge Coca Date: Sat, 7 May 2022 09:44:48 -0500 Subject: [PATCH] fix: character selection order (#383) --- .../view/character_selection_page.dart | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/select_character/view/character_selection_page.dart b/lib/select_character/view/character_selection_page.dart index 1f7b0374..2355d6cc 100644 --- a/lib/select_character/view/character_selection_page.dart +++ b/lib/select_character/view/character_selection_page.dart @@ -69,9 +69,9 @@ class _CharacterGrid extends StatelessWidget { child: Column( children: [ _Character( - key: const Key('sparky_character_selection'), - character: const SparkyTheme(), - isSelected: state.isSparkySelected, + key: const Key('dash_character_selection'), + character: const DashTheme(), + isSelected: state.isDashSelected, ), const SizedBox(height: 6), _Character( @@ -87,9 +87,9 @@ class _CharacterGrid extends StatelessWidget { child: Column( children: [ _Character( - key: const Key('dash_character_selection'), - character: const DashTheme(), - isSelected: state.isDashSelected, + key: const Key('sparky_character_selection'), + character: const SparkyTheme(), + isSelected: state.isSparkySelected, ), const SizedBox(height: 6), _Character(