-
Notifications
You must be signed in to change notification settings - Fork 156
[New Onboarding] Encoure acount creation update for new onboarding #3508
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: release/7.98
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @SergioEstevao , following your steps I was able to see the Informational View.
I left one comment and a question, and found a UI problem with the new font sizes on smaller devices
|
||
if FeatureFlag.encourageAccountCreation.enabled, | ||
!Settings.hasShownInformationalViewModal, | ||
Settings.hasSeenInitialOnboardingBefore == true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Settings.hasSeenInitialOnboardingBefore
can we avoid the == true
?
Also does this logic apply when the new onboarding FF is off?
.padding(.bottom, 12.0) | ||
Text(L10n.eacInformationalViewModalDescription) | ||
.font(size: 15.0, style: .body, weight: .medium) | ||
.font(size: FeatureFlag.newOnboardingAccountCreation.enabled ? 17.0 : 15, style: .body, weight: FeatureFlag.newOnboardingAccountCreation.enabled ? .regular : .medium) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| 📘 Part of: # |
|:---:|
Fixes PCIOS-
Updates the logic around new onboarding and encourage account creation to only show this screen when new onboarding was already show once and we are updating the app.
Also did some changes on the fonts to match the styling on new onboarding title and labels
To test
Checklist
CHANGELOG.md
if necessary.