From b11888f8bdbeeefccce65faddffc276376c9ec23 Mon Sep 17 00:00:00 2001 From: julian Date: Wed, 30 Nov 2022 09:10:55 -0600 Subject: [PATCH] recovery phrase line height and wording fixes --- .../new_wallet_recovery_phrase_warning_view.dart | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/lib/pages/add_wallet_views/new_wallet_recovery_phrase_warning_view/new_wallet_recovery_phrase_warning_view.dart b/lib/pages/add_wallet_views/new_wallet_recovery_phrase_warning_view/new_wallet_recovery_phrase_warning_view.dart index 64dd32e1d..a1b0cb2fc 100644 --- a/lib/pages/add_wallet_views/new_wallet_recovery_phrase_warning_view/new_wallet_recovery_phrase_warning_view.dart +++ b/lib/pages/add_wallet_views/new_wallet_recovery_phrase_warning_view/new_wallet_recovery_phrase_warning_view.dart @@ -97,7 +97,8 @@ class _NewWalletRecoveryPhraseWarningViewState onPressed: () async { await showDialog( context: context, - builder: (context) => const RecoveryPhraseExplanationDialog(), + builder: (context) => + const RecoveryPhraseExplanationDialog(), ); }, ), @@ -179,6 +180,7 @@ class _NewWalletRecoveryPhraseWarningViewState .extension()! .textDark, fontSize: 18, + height: 1.3, ), ), TextSpan( @@ -188,6 +190,7 @@ class _NewWalletRecoveryPhraseWarningViewState .extension()! .accentColorBlue, fontSize: 18, + height: 1.3, ), ), TextSpan( @@ -197,6 +200,7 @@ class _NewWalletRecoveryPhraseWarningViewState .extension()! .textDark, fontSize: 18, + height: 1.3, ), ), TextSpan( @@ -206,6 +210,7 @@ class _NewWalletRecoveryPhraseWarningViewState .extension()! .accentColorBlue, fontSize: 18, + height: 1.3, ), ), TextSpan( @@ -215,6 +220,7 @@ class _NewWalletRecoveryPhraseWarningViewState .extension()! .textDark, fontSize: 18, + height: 1.3, ), ), ], @@ -367,10 +373,12 @@ class _NewWalletRecoveryPhraseWarningViewState ), Flexible( child: Text( - "I understand that Stack Wallet does not keep and cannot restore your recovery phrase, and If I lose my recovery phrase, I will not be able to access my funds.", + "I understand that Stack Wallet does not keep and cannot restore my recovery phrase, and If I lose my recovery phrase, I will not be able to access my funds.", style: isDesktop ? STextStyles.desktopTextMedium(context) - : STextStyles.baseXS(context), + : STextStyles.baseXS(context).copyWith( + height: 1.3, + ), ), ), ],