fixed keyboard- always displayed
Hi, is there a way to keep the keyboard onscreen/displayed at all times? eg. with showKeyboard somehow
@trentbrooks I'm looking into a way to pass a <Keyboard /> component into the <KeyboardInput /> for issue #44 this would also resolve your issue. However i might be possible to have a prop option if that's more favorable for your case.
You might also be able to do it using the ref option recently added.
Hey, yeah i've tried to set directly using the ref option. It works but the problem is this line https://github.com/xtrinch/react-touch-screen-keyboard/blob/master/src/KeyboardedInput.js#L119. If i catch the onBlur event and call this.inputRef.setState({ showKeyboard: true }) straight after it's set to false as the callback fires first. Any tips for a temporary fix?