How to clear text ibput after message sent react native Code Example
how to clear text ibput after message sent react native
//you will need to retrieve the ref at your constructor using React.createRef:
//At constructor
function: this.myTextInput = React.createRef();
//At render function:
//And then you can call
this.myTextInput.current.clear();