-
Notifications
You must be signed in to change notification settings - Fork 24.4k
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
iOS Keyboard displays over TextInput field preventing user from seeing it. #415
Comments
👍 I've also been trying to find a work around for this in the meantime (i.e. something along the lines of |
👍 |
Could you give us an example @erikthedeveloper , I can't get this work :( Thanks! |
👍 |
I can't do work |
Ahh, good call @erikthedeveloper. Hopefully this behavior will be baked in soon! |
@stirman how do you do , can show me show source |
If the solution that @wangzhe1995 linked to does not work for anybody, ping me and I'll re-open the issue! 😄 |
It would be awesome to see a component/example of a messaging view where the keyboard slides up with the input field. 👍 |
As of React Native 0.29 you can use React Native's |
KeyboardAvoidingView does not work... |
Hi All, import { Animated, Keyboard} from 'react-native'; constructor(props) {
} //For key board componentWillUnmount() { keyboardWillShow = (event) => { keyboardWillHide = (event) => { |
When a field is displayed in lower part of screen and user taps on it to enter text, the keyboard displays on top of the field forcing the user to scroll to see the field again. The correct behavior should be to slide the underlying window up when the keyboard is being displayed so it doesn't cover the input field.
Replicate bug: Using the UIExplorer text input demo screen, try entering text into a TextField that is on bottom of screen. Keyboard displays on top of TextField and hides the text field from view.
The text was updated successfully, but these errors were encountered: