-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Fix minor pledge screen issues #815
Conversation
Blocked for now until we release 3.20.0 |
Let's actually try to squeeze it in the release (we've already dome some tweaks to |
@@ -352,6 +352,7 @@ internal final class DeprecatedRewardPledgeViewController: UIViewController { | |||
|> UIScrollView.lens.layoutMargins .~ .init(leftRight: Styles.grid(2)) | |||
|> UIScrollView.lens.delaysContentTouches .~ false | |||
|> UIScrollView.lens.keyboardDismissMode .~ .interactive | |||
|> \.alwaysBounceVertical .~ 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.
Also fixed in #819
For the second ACs of: "The |
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.
Thanks Pavel this is g2g!!🛳🛳🛳
📲 What
Fixes
🤔 Why
UI improvements
👀 See
Focus on the
X
button in the navigation bar (previously we did not dim it which made it look tap-able but since the picker takes over the screen that's not the case - this could be very confusing to the user). The other visual change was done to theCancel
andDone
button, which now look more like buttons, don't support Dynamic Type (for consistency with the rest of the codebase) and are consistent with our styles/colors.✅ Acceptance criteria
X
button on the pledge screen dims when shipping location picker is presentedX
button on the pledge screen reverts back to normal when shipping location picker isdismissed using the
Cancel
buttonX
button on the pledge screen reverts back to normal when shipping location picker is dismissed using theDone
button