jwohlfert23 / react-native-tag-input

A simple React Native component that creates an input for tags, emails, etc.
MIT License
232 stars 104 forks source link

Autofocus #3

Closed natestraub closed 8 years ago

natestraub commented 8 years ago

Hi there!

Hoping you could help me out with figuring out the autofocus on this when opening inside a modal. I've tried adding both "autofocus: {true}" as a prop and also trying to give the actual control a ref and then using this.refs.emailInput.focus() but can't seem to get either to work. Any help would be appreciated.

Thanks!

jwohlfert23 commented 8 years ago

Working on an update now that should allow you to add the autofocus attribute.

jwohlfert23 commented 8 years ago

You can add inputProps={{autoFocus:true}} as a prop and that should work.