Merge branch 'main' into fix/firebase-config

pull/302/head
Tom Arra 3 years ago committed by GitHub
commit ac3d738cf9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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