fix: update character selection dialog (#336)

pull/338/head
arturplaczek 3 years ago committed by GitHub
parent 79624f07f1
commit e3355bccbd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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 {
), ),
], ],
), ),
),
], ],
); );
}, },

Loading…
Cancel
Save