mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-03-25 08:38:45 +00:00
update frost info dialogs
This commit is contained in:
parent
6efbc02163
commit
ecadefef63
2 changed files with 25 additions and 47 deletions
|
@ -114,7 +114,6 @@ class _NewFrostMsWalletViewState
|
||||||
child: Column(
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
// TODO: [prio=high] need text from designers!
|
|
||||||
Text(
|
Text(
|
||||||
"What is a threshold?",
|
"What is a threshold?",
|
||||||
style: STextStyles.w600_20(context),
|
style: STextStyles.w600_20(context),
|
||||||
|
@ -123,7 +122,27 @@ class _NewFrostMsWalletViewState
|
||||||
height: 12,
|
height: 12,
|
||||||
),
|
),
|
||||||
Text(
|
Text(
|
||||||
"Text here",
|
"A threshold is the amount of people required to perform an "
|
||||||
|
"action. This does not have to be the same number as the "
|
||||||
|
"total number in the group.",
|
||||||
|
style: STextStyles.w400_16(context),
|
||||||
|
),
|
||||||
|
const SizedBox(
|
||||||
|
height: 6,
|
||||||
|
),
|
||||||
|
Text(
|
||||||
|
"For example, if you have 3 people in the group, but a threshold "
|
||||||
|
"of 2, then you only need 2 out of the 3 people to sign for an "
|
||||||
|
"action to take place.",
|
||||||
|
style: STextStyles.w400_16(context),
|
||||||
|
),
|
||||||
|
const SizedBox(
|
||||||
|
height: 6,
|
||||||
|
),
|
||||||
|
Text(
|
||||||
|
"Conversely if you have a group of 3 AND a threshold of 3, you "
|
||||||
|
"will need all 3 people in the group to sign to approve any "
|
||||||
|
"action.",
|
||||||
style: STextStyles.w400_16(context),
|
style: STextStyles.w400_16(context),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
|
|
@ -292,7 +292,6 @@ class _FrostJoinInfoDialog extends StatelessWidget {
|
||||||
child: Column(
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
// TODO: [prio=high] need text from designers!
|
|
||||||
Text(
|
Text(
|
||||||
"Join a group",
|
"Join a group",
|
||||||
style: STextStyles.w600_20(context),
|
style: STextStyles.w600_20(context),
|
||||||
|
@ -301,58 +300,18 @@ class _FrostJoinInfoDialog extends StatelessWidget {
|
||||||
height: 12,
|
height: 12,
|
||||||
),
|
),
|
||||||
Text(
|
Text(
|
||||||
"Text here",
|
"You should select 'Join a new group' if you are creating a brand "
|
||||||
style: STextStyles.w400_16(context),
|
"new wallet with other people.",
|
||||||
),
|
|
||||||
const SizedBox(
|
|
||||||
height: 8,
|
|
||||||
),
|
|
||||||
Text(
|
|
||||||
"What is resharing?",
|
|
||||||
style: STextStyles.w600_16(context),
|
style: STextStyles.w600_16(context),
|
||||||
),
|
),
|
||||||
const SizedBox(
|
|
||||||
height: 8,
|
|
||||||
),
|
|
||||||
Text(
|
|
||||||
"In cryptocurrency, you are your own bank."
|
|
||||||
" Imagine keeping cash at home. If that cash"
|
|
||||||
" burns down or gets stolen, you lose it and"
|
|
||||||
" nobody will help you get your money back.",
|
|
||||||
style: STextStyles.w400_16(context),
|
|
||||||
),
|
|
||||||
const SizedBox(
|
|
||||||
height: 8,
|
|
||||||
),
|
|
||||||
Text(
|
|
||||||
"Since cryptocurrency is digital money, your "
|
|
||||||
"wallet key is like that “cash” you keep at "
|
|
||||||
"home. If you lose your phone or if you "
|
|
||||||
"forget your wallet PIN, but you have your "
|
|
||||||
"wallet key, your crypto money will be safe. "
|
|
||||||
"That is why you should keep your wallet key "
|
|
||||||
"safe.",
|
|
||||||
style: STextStyles.w400_16(context),
|
|
||||||
),
|
|
||||||
const SizedBox(
|
const SizedBox(
|
||||||
height: 12,
|
height: 12,
|
||||||
),
|
),
|
||||||
Text(
|
Text(
|
||||||
"Why write it down?",
|
"You should select 'Join an existing group' if you an existing "
|
||||||
|
"group is being edited and you are being added as a participant.",
|
||||||
style: STextStyles.w600_16(context),
|
style: STextStyles.w600_16(context),
|
||||||
),
|
),
|
||||||
const SizedBox(
|
|
||||||
height: 8,
|
|
||||||
),
|
|
||||||
Text(
|
|
||||||
"You do not put your cash on display, do you?"
|
|
||||||
" Keeping your wallet key on a digital device"
|
|
||||||
" is like having it on display for thieves - "
|
|
||||||
"malicious software and hackers. Write your "
|
|
||||||
"wallet key down on paper in multiple copies "
|
|
||||||
"and keep them in a real, physical safe.",
|
|
||||||
style: STextStyles.w400_16(context),
|
|
||||||
),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue