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