mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 09:47:37 +00:00
recovery phrase line height and wording fixes
This commit is contained in:
parent
e0f757f0bc
commit
b11888f8bd
1 changed files with 11 additions and 3 deletions
|
@ -97,7 +97,8 @@ class _NewWalletRecoveryPhraseWarningViewState
|
|||
onPressed: () async {
|
||||
await showDialog<void>(
|
||||
context: context,
|
||||
builder: (context) => const RecoveryPhraseExplanationDialog(),
|
||||
builder: (context) =>
|
||||
const RecoveryPhraseExplanationDialog(),
|
||||
);
|
||||
},
|
||||
),
|
||||
|
@ -179,6 +180,7 @@ class _NewWalletRecoveryPhraseWarningViewState
|
|||
.extension<StackColors>()!
|
||||
.textDark,
|
||||
fontSize: 18,
|
||||
height: 1.3,
|
||||
),
|
||||
),
|
||||
TextSpan(
|
||||
|
@ -188,6 +190,7 @@ class _NewWalletRecoveryPhraseWarningViewState
|
|||
.extension<StackColors>()!
|
||||
.accentColorBlue,
|
||||
fontSize: 18,
|
||||
height: 1.3,
|
||||
),
|
||||
),
|
||||
TextSpan(
|
||||
|
@ -197,6 +200,7 @@ class _NewWalletRecoveryPhraseWarningViewState
|
|||
.extension<StackColors>()!
|
||||
.textDark,
|
||||
fontSize: 18,
|
||||
height: 1.3,
|
||||
),
|
||||
),
|
||||
TextSpan(
|
||||
|
@ -206,6 +210,7 @@ class _NewWalletRecoveryPhraseWarningViewState
|
|||
.extension<StackColors>()!
|
||||
.accentColorBlue,
|
||||
fontSize: 18,
|
||||
height: 1.3,
|
||||
),
|
||||
),
|
||||
TextSpan(
|
||||
|
@ -215,6 +220,7 @@ class _NewWalletRecoveryPhraseWarningViewState
|
|||
.extension<StackColors>()!
|
||||
.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,
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue