diff --git a/lib/features/auth/login_screen.dart b/lib/features/auth/login_screen.dart index c1df497..e018fae 100644 --- a/lib/features/auth/login_screen.dart +++ b/lib/features/auth/login_screen.dart @@ -212,7 +212,7 @@ class _LoginScreenState extends State { // Title Text( - _codeSent ? 'Check your email' : 'Welcome', + _codeSent ? 'Check your email' : 'Welcome to inou', style: Theme.of(context).textTheme.headlineLarge, textAlign: TextAlign.center, ), @@ -220,7 +220,7 @@ class _LoginScreenState extends State { Text( _codeSent ? 'Enter the 6-digit code sent to\n$_sentToEmail' - : 'Sign in to your inou account', + : 'Enter your email to continue', style: Theme.of(context).textTheme.bodyMedium?.copyWith( color: InouColors.textMuted, ), @@ -352,15 +352,15 @@ class _LoginScreenState extends State { margin: const EdgeInsets.symmetric(horizontal: 120), decoration: BoxDecoration( color: InouColors.accent, - borderRadius: BorderRadius.circular(20), + borderRadius: BorderRadius.circular(16), ), child: const Center( child: Text( 'i', style: TextStyle( color: Colors.white, - fontSize: 48, - fontWeight: FontWeight.w300, + fontSize: 52, + fontWeight: FontWeight.w800, ), ), ), @@ -430,7 +430,7 @@ class _LoginScreenState extends State { future: _biometricService.getBiometricTypeName(), builder: (context, snapshot) { final name = snapshot.data ?? 'Biometrics'; - return Text('Sign in with $name'); + return Text('Use $name'); }, ), style: OutlinedButton.styleFrom(