The usual way I do this is by calling `this.refs.myInput.focus()`, being the `myInput` a focusable element, like the normal TextInput. As this are stateless components there is no way to attach a ref. Is there another way to focus the Input?
The usual way I do this is by calling
this.refs.myInput.focus(), being themyInputa focusable element, like the normal TextInput.As this are stateless components there is no way to attach a ref. Is there another way to focus the Input?