diff --git a/lib/src/screens/login_screen.dart b/lib/src/screens/login_screen.dart index 83efce2..c51748e 100644 --- a/lib/src/screens/login_screen.dart +++ b/lib/src/screens/login_screen.dart @@ -1,4 +1,5 @@ import 'package:flutter/material.dart'; +import 'package:font_awesome_flutter/font_awesome_flutter.dart'; import '../widgets/logo.dart'; import '../widgets/gradient_button.dart'; @@ -14,11 +15,14 @@ class LoginScreen extends StatelessWidget { child: Center( child: Logo(), ), - flex: 3, + flex: 2, ), Expanded( child: Center( child: GradientButton( + height: 50, + width: 310, + radius: 25, child: getButtonBody(), ), ), @@ -32,6 +36,8 @@ class LoginScreen extends StatelessWidget { Widget getButtonBody() { return Row( + mainAxisSize: MainAxisSize.min, + crossAxisAlignment: CrossAxisAlignment.center, children: [ Text( 'LOGIN', @@ -41,6 +47,14 @@ class LoginScreen extends StatelessWidget { fontWeight: FontWeight.w600, ), ), + SizedBox( + width: 10, + ), + Icon( + FontAwesomeIcons.google, + color: Colors.white, + size: 24, + ), ], ); }