Add setNativeProps to QuickTextInput (#1881)

This commit is contained in:
Harrison Healey 2018-07-04 09:38:14 -04:00 committed by Elias Nahum
parent d9eb29a724
commit 939040c3cc

View file

@ -77,6 +77,10 @@ export default class QuickTextInput extends React.PureComponent {
this.storedValue = this.props.value;
}
setNativeProps(nativeProps) {
this.input.setNativeProps(nativeProps);
}
isFocused() {
return this.input.isFocused();
}