react-native-clean-form icon indicating copy to clipboard operation
react-native-clean-form copied to clipboard

[Improvement] Focus inputs when tapping the label

Open markusguenther opened this issue 9 years ago • 1 comments

At the moment it can be annoying to get the input to be focused.

So it would be nice if you can tab the label or form group and then automatically focus the input.

markusguenther avatar Mar 29 '17 20:03 markusguenther

I could be wrong, but don't you just need to do the following in createInputCreator.js?

Before:

<Label>{ label }</Label>
{ renderComponent(props) }

After:

<Label>{ label }
  { renderComponent(props) }
</Label>

jonstuebe avatar Apr 11 '17 15:04 jonstuebe