我是一个初学者在React Native,并试图设计一个OTP输入框。在打开屏幕键盘不打开。第一个占位符是自动对焦,但键盘不打开。我正在使用这个库。React native otp input
gg0vcinb1#
设置autoFocusOnLoad={false},它在我这边工作。
autoFocusOnLoad={false}
iszxjhcz2#
溶液:
const OTPContainer = () => { const otpRef = useRef(null); useEffect(() => { setTimeout(() => otpRef.current.focusField(0), 250); }, []); return <OTPInputView ref={otpRef} autoFocusOnLoad={false}/>}
2条答案
按热度按时间gg0vcinb1#
设置
autoFocusOnLoad={false}
,它在我这边工作。iszxjhcz2#
溶液: