From 7b88a7e6d075a63bea86aa3a0d3e753dcc44203b Mon Sep 17 00:00:00 2001 From: ryleedavis Date: Mon, 27 Feb 2023 13:38:21 -0700 Subject: [PATCH] oceanBreeze mobile persona-easy/incognito --- assets/svg/oceanBreeze/persona-easy-1.svg | 54 +++++++++++------------ lib/pages/stack_privacy_calls.dart | 18 +++++--- 2 files changed, 39 insertions(+), 33 deletions(-) diff --git a/assets/svg/oceanBreeze/persona-easy-1.svg b/assets/svg/oceanBreeze/persona-easy-1.svg index d24673688..f21e19345 100644 --- a/assets/svg/oceanBreeze/persona-easy-1.svg +++ b/assets/svg/oceanBreeze/persona-easy-1.svg @@ -1,31 +1,4 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -120,4 +93,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/pages/stack_privacy_calls.dart b/lib/pages/stack_privacy_calls.dart index 474b521d1..b2c77dc5e 100644 --- a/lib/pages/stack_privacy_calls.dart +++ b/lib/pages/stack_privacy_calls.dart @@ -357,7 +357,7 @@ class _PrivacyToggleState extends ConsumerState { // const SizedBox( // height: 10, // ), - (isSorbet || isOcean) + (isSorbet) ? Image.asset( Assets.png.personaEasy(context), width: 140, @@ -468,11 +468,17 @@ class _PrivacyToggleState extends ConsumerState { const SizedBox( height: 10, ), - SvgPicture.asset( - Assets.svg.personaIncognito(context), - width: isDesktop ? 120 : 140, - height: isDesktop ? 120 : 140, - ), + (isSorbet) + ? Image.asset( + Assets.png.personaIncognito(context), + width: 140, + height: 140, + ) + : SvgPicture.asset( + Assets.svg.personaIncognito(context), + width: 140, + height: 140, + ), if (isDesktop) const SizedBox( height: 12,