Environment
React Native: 0.60.5
React Native Paper: 3.0.0-alpha.5
Description
I had some issues with auto complete and text suggestion in previous version so I updated lib to the alpha version. It works like a charm for me and solved my problems but I start having a yellow warning screen.

any ideas how to solve it? when I comment ref={this.handleTextInputRef} yellow screen disappear.
Reproducible Demo
<PaperTextInput
{...this.props}
mode={isOutlined ? 'outlined' : 'flat'}
ref={this.handleTextInputRef}
onChangeText={this.onChangeText}
value={this.state.textInputValue}
/>
...
private handleTextInputRef = (ref: any) => {
this.textInputReference = ref;
};
Environment
React Native: 0.60.5
React Native Paper: 3.0.0-alpha.5
Description
I had some issues with auto complete and text suggestion in previous version so I updated lib to the alpha version. It works like a charm for me and solved my problems but I start having a yellow warning screen.
any ideas how to solve it? when I comment
ref={this.handleTextInputRef}yellow screen disappear.Reproducible Demo