From 4befaf49348d12f167cec62e98d7f8a4d0a513ee Mon Sep 17 00:00:00 2001 From: Kyrel Jerome Date: Tue, 18 Jun 2019 22:31:18 -0400 Subject: [PATCH] fix orientations --- lib/CreditsRoute.dart | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/lib/CreditsRoute.dart b/lib/CreditsRoute.dart index 1198007..a570790 100644 --- a/lib/CreditsRoute.dart +++ b/lib/CreditsRoute.dart @@ -36,12 +36,14 @@ class CreditsRoute extends StatelessWidget { children: [ Column( mainAxisAlignment: MainAxisAlignment.spaceAround, + crossAxisAlignment: CrossAxisAlignment.center, children: [ Icon( TFoods.tfoodstologotest, size: 100.0, color: Colors.indigo[100], ), + Spacer(), Text( "Powered by ", style: TextStyle( @@ -51,9 +53,9 @@ class CreditsRoute extends StatelessWidget { ), ), Container( - margin: EdgeInsets.all(8), + margin: EdgeInsets.all(4), child: FlutterLogo( - size: 100, + size: 60, ), ), ], @@ -84,7 +86,7 @@ class CreditsRoute extends StatelessWidget { overflow: TextOverflow.visible, maxLines: 8, style: TextStyle( - fontSize: 12, + fontSize: 15, color: Colors.indigo[100], fontWeight: FontWeight.w600, ), @@ -95,7 +97,7 @@ class CreditsRoute extends StatelessWidget { child: Text( "All data presented is updated periodically from the Cobalt API, we are not liable for innaccuracies, but try to keep data accurate.", style: TextStyle( - fontSize: 12, + fontSize: 15, color: Colors.indigo[100], fontWeight: FontWeight.w600, ),