ui bug fixes

This commit is contained in:
Marco 2022-10-11 15:28:56 -06:00
parent 0c6d84e9dd
commit c2f3c77d2f
2 changed files with 9 additions and 15 deletions

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 63 KiB

After

Width:  |  Height:  |  Size: 8.2 KiB

View file

@ -229,16 +229,17 @@ class _PrivacyToggleState extends ConsumerState<PrivacyToggle> {
width: 140,
height: 140,
),
const Center(
Center(
child: Text(
"Easy Crypto",
style: TextStyle(
style: STextStyles.label(context).copyWith(
fontWeight: FontWeight.bold,
),
)),
const Center(
Center(
child: Text(
"Recommended",
style: STextStyles.label(context),
),
),
],
@ -325,17 +326,18 @@ class _PrivacyToggleState extends ConsumerState<PrivacyToggle> {
width: 140,
height: 140,
),
const Center(
Center(
child: Text(
"Incognito",
style: TextStyle(
style: STextStyles.label(context).copyWith(
fontWeight: FontWeight.bold,
),
),
),
const Center(
Center(
child: Text(
"Privacy conscious",
style: STextStyles.label(context),
),
),
],