react-native-root-toast
react-native-root-toast copied to clipboard
Keyboard covers toast
When keyboard is up and toast position is bottom, it's covered by keyboard! Is it possible to come upon keyboard view?
I have the same problem.
@prancky But it seems no one cares! :)
@AlirezaAkbarix i found a way to fix it. here is my solution.
In button press event, i called this._passwordInput.blur();
"_passwordInput" is my input feild ref.
maybe the only way to fix it to make keyboard down
I think you can try to show the toast in the middle of the screen. In fact, I have already done this.
Yes, it is possible to close the phone keyboard in React Native. To do this, you can use React Native's TouchableWithoutFeedback component along with the Keyboard.dismiss() function to close the keyboard.