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