fix: remove Center from PlayButtonOverlay

pull/288/head
arturplaczek 3 years ago
parent e73493fcbf
commit be39da94e2

@ -21,14 +21,12 @@ class PlayButtonOverlay extends StatelessWidget {
Widget build(BuildContext context) {
final l10n = context.l10n;
return Center(
child: PinballButton(
text: l10n.play,
onTap: () async {
_game.gameFlowController.start();
await showCharacterSelectionDialog(context);
},
),
return PinballButton(
text: l10n.play,
onTap: () async {
_game.gameFlowController.start();
await showCharacterSelectionDialog(context);
},
);
}
}

Loading…
Cancel
Save