Re-center elements after commit 00e3ae0ac2

master
Rafael 2024-07-12 23:28:14 +02:00
parent 00e3ae0ac2
commit 6b54da1069
1 changed files with 53 additions and 51 deletions

View File

@ -24,6 +24,7 @@ class MatchedScreen extends StatelessWidget {
appBar: AppBar(title: const Text('It\'s a Match!')), appBar: AppBar(title: const Text('It\'s a Match!')),
body: Padding( body: Padding(
padding: const EdgeInsets.all(16.0), padding: const EdgeInsets.all(16.0),
child: Center(
child: SingleChildScrollView( child: SingleChildScrollView(
child: Column( child: Column(
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.center,
@ -78,6 +79,7 @@ class MatchedScreen extends StatelessWidget {
), ),
), ),
), ),
),
); );
} }
} }