1//you will need to retrieve the ref at your constructor using React.createRef:
2//At constructor
3function: this.myTextInput = React.createRef();
4
5//At render function:
6<TextInput ref={this.myTextInput} />
7
8//And then you can call
9this.myTextInput.current.clear();