Skip to content
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

Android Annotations do not move in sync as the SketchCanvas Images moves along when keyboard rise up #207

Open
aayushm9595 opened this issue Jun 21, 2021 · 1 comment

Comments

@aayushm9595
Copy link

Expectation is to have the annotations and Image move in sync when the keyboard is raised.
Works fine on iOS
Plaform: "Android"
https://user-images.githubusercontent.com/50030865/122806791-64c7e680-d2e8-11eb-93f6-9172a1bf1732.mp4

@mealCode
Copy link

i believe you have to handle it with react native itself. it doesn't really relate to the library. It's with KeyboardAvoidingView so something like this:

<KeyboardAvoidingView
      behavior={Platform.OS === 'ios' ? 'padding' : null}
      keyboardVerticalOffset={Platform.select({ios: 100, android: 100})}
      style={{flex: 1}}>

you can play around with the values.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants