-
Notifications
You must be signed in to change notification settings - Fork 50
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: lifting action section #2966
Conversation
@@ -54,73 +54,69 @@ export const DelegationConfirmation = () => { | |||
|
|||
return ( | |||
<View style={styles.container}> |
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.
is it a screen? if it is it should be wrapped within SafeAreaView.
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.
Maybe this is the issue?
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.
just checking and unfortunately the issue still persists
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 I tested using paddings instead of margins
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.
The problem is that the button stays behind the keyboard until you click to edit the input. When you start editing, the button goes into place.
I tried to force the focus but it didn't work either.
</Actions> | ||
|
||
{/* hack to fix weird KeyboardAvoidingView bug in THIS SCREEN */} | ||
{Platform.OS === 'ios' && <KeyboardSpacer />} |
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.
maybe we should start using View.onLayout (thinking out loud, ignore it for now)
815e8ce
to
3c558df
Compare
Related to YOMO-913