React Native:有什么办法可以解决每次打字都关闭键盘的问题?

时间:2021-03-21 12:37:24

标签: javascript reactjs react-native android-softkeyboard

有什么办法可以解决每次敲键盘都会关闭的问题.. 每次按下键盘上的按钮时,它都会关闭,并且不清楚原因。 我很乐意帮助解决这个问题。

这是功能

'Open'

这是文本输入

const onChangeInput = (index, value) => {
    if (isNumeric(value)) {
      const newMeasurements = [...inputMeasurement];
      newMeasurements[index] = value;
      setInputMeasurement(newMeasurements);
      updateInputText(UPDATE_TYPE.MEASUREMENT, newMeasurements);
    } else {
      console.log(index, 'onChangeInput is NOT a valid decimal:', value);
      Toast.show({ text1: 'NUMBERS ONLY' });
      return;
    }
  };

0 个答案:

没有答案