I wanna know if its possible to get the value from a TextInput using its ref, like this:
emailRef = useRef<TextInput>();return(<><TextInput ref={emailRef}/><TouchableOpacity onPress={() => console.log(emailRef.current.value)}> Print Value of TextInput</TouchableOpacity></>)
I know this is possible on React, but i don't get how to do this on React Native
obs: I don't wanna use State to do this.