fix: update character selection dialog

pull/336/head
arturplaczek 3 years ago
parent 03f60fbffe
commit 018a07d6ab

@ -65,7 +65,8 @@ class _CharacterGrid extends StatelessWidget {
return Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Column(
Expanded(
child: Column(
children: [
_Character(
key: const Key('sparky_character_selection'),
@ -80,8 +81,10 @@ class _CharacterGrid extends StatelessWidget {
),
],
),
),
const SizedBox(width: 6),
Column(
Expanded(
child: Column(
children: [
_Character(
key: const Key('dash_character_selection'),
@ -96,6 +99,7 @@ class _CharacterGrid extends StatelessWidget {
),
],
),
),
],
);
},

Loading…
Cancel
Save