类型“ TextInput”上不存在属性“ blur”

时间:2020-06-19 10:09:04

标签: typescript react-native

如何将useRef与React Native TextInput一起使用以具有正确的类型?

React Native文档说TextInput有4种方法,包括blur

但是,正如您在下图所看到的,它向我显示了一个错误。

enter image description here

我必须使用哪种类型?

1 个答案:

答案 0 :(得分:0)

我从TextInput而非react-native-gesture-handler导入了react-native

代替这个

import { TextInput } from 'react-native-gesture-handler';

应该是这个

import { TextInput } from 'react-native';