如何将useRef
与React Native TextInput
一起使用以具有正确的类型?
React Native文档说TextInput
有4种方法,包括blur
。
但是,正如您在下图所看到的,它向我显示了一个错误。
我必须使用哪种类型?
答案 0 :(得分:0)
我从TextInput
而非react-native-gesture-handler
导入了react-native
代替这个
import { TextInput } from 'react-native-gesture-handler';
应该是这个
import { TextInput } from 'react-native';