-
Notifications
You must be signed in to change notification settings - Fork 36
Update UserDetailsFrom style for escrow verification flow #744
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
Conversation
_event: Event, | ||
testDate: Date | undefined, | ||
) => { | ||
setShowDatePickerAndroid(false) |
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.
This line seems weird, but there's a really UI bug that occurs if it's not included. Found in the issues for the date picker library.
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.
Could we make sure to mention this in the commit message?
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.
and add the issue link here as well?
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.
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.
LGTM!
…#744) Why: we would like for the user details form to provide a good UX on both iOS and Android. This commit: Updates the styling on the form, especially to the DatePicker element. Note that ReactNativeDatetimePicker has a UI bug on android that required an odd workaround with `setShowDatePickerAndroid(false)` reference: react-native-datetimepicker/datetimepicker#263 react-native-datetimepicker/datetimepicker#54
Why: we would like for the user details form to provide a good UX on both iOS and Android.