android - How to set focus listener on TextInput in react native -


hi using textinput in react native application. want open date dialog on clicking on textinput. came in mind if allows listen focus events may work me.

i didn't find word around this. know how set focus listener on textinput in react native ?

<textinput   style={{     height: 40,     bordercolor: "gray",     borderwidth: 1,     margintop: 8   }}   underlinecolorandroid="transparent"   placeholder={strings.schedule_date}   onkeypress={keypress => console.log(keypress)} /> 

you can use onfocus prop this. callback called when text input focused. can read document.


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -