update frost info dialogs

This commit is contained in:
julian 2024-05-10 09:52:21 -06:00
parent 6efbc02163
commit ecadefef63
2 changed files with 25 additions and 47 deletions

View file

@ -114,7 +114,6 @@ class _NewFrostMsWalletViewState
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
// TODO: [prio=high] need text from designers!
Text(
"What is a threshold?",
style: STextStyles.w600_20(context),
@ -123,7 +122,27 @@ class _NewFrostMsWalletViewState
height: 12,
),
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),
),
],

View file

@ -292,7 +292,6 @@ class _FrostJoinInfoDialog extends StatelessWidget {
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
// TODO: [prio=high] need text from designers!
Text(
"Join a group",
style: STextStyles.w600_20(context),
@ -301,58 +300,18 @@ class _FrostJoinInfoDialog extends StatelessWidget {
height: 12,
),
Text(
"Text here",
style: STextStyles.w400_16(context),
),
const SizedBox(
height: 8,
),
Text(
"What is resharing?",
"You should select 'Join a new group' if you are creating a brand "
"new wallet with other people.",
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(
height: 12,
),
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),
),
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),
),
],
),
);