oceanBreeze persona-easy/incognito
Before Width: | Height: | Size: 1.1 MiB After Width: | Height: | Size: 50 KiB |
Before Width: | Height: | Size: 59 KiB After Width: | Height: | Size: 1.9 MiB |
Before Width: | Height: | Size: 8.2 KiB After Width: | Height: | Size: 1.9 MiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 3.6 MiB |
|
@ -21,6 +21,8 @@ class EmptyWallets extends ConsumerWidget {
|
|||
ThemeType.fruitSorbet;
|
||||
final bool isForest =
|
||||
ref.read(colorThemeProvider.state).state.themeType == ThemeType.forest;
|
||||
final bool isOcean = ref.read(colorThemeProvider.state).state.themeType ==
|
||||
ThemeType.oceanBreeze;
|
||||
|
||||
return SafeArea(
|
||||
child: Padding(
|
||||
|
|
|
@ -273,7 +273,7 @@ class _PrivacyToggleState extends ConsumerState<PrivacyToggle> {
|
|||
const SizedBox(
|
||||
height: 10,
|
||||
),
|
||||
(isSorbet || isOcean)
|
||||
(isSorbet)
|
||||
? Image.asset(
|
||||
Assets.png.personaEasy(context),
|
||||
width: 120,
|
||||
|
@ -385,7 +385,7 @@ class _PrivacyToggleState extends ConsumerState<PrivacyToggle> {
|
|||
const SizedBox(
|
||||
height: 10,
|
||||
),
|
||||
(isSorbet || isOcean)
|
||||
(isSorbet)
|
||||
? Image.asset(
|
||||
Assets.png.personaIncognito(context),
|
||||
width: 120,
|
||||
|
|