React Native 自动更正建议不可见

React Native autoCorrect suggestions are not visible

我需要一些帮助。

我无法让文本输入键盘显示自动更正建议。该功能在进入 expo snack 时有效,但在我使用 expo 应用程序的任何设备上均无效,包括 android 和 iOS。我尝试应用 autoCorrect={true} 得到相同的结果。下面的代码和屏幕截图。这是某种世博会配置问题吗?这让我真的卡住了。感谢您的帮助。

编辑:博览会小吃linkhttps://snack.expo.io/S1!cDJ0RS

import React, { Component } from 'react';
import { TextInput, View } from 'react-native';

export default function RespondScreen() {
  const [value, onChangeText] = React.useState('Useless Placeholder');

  return (
   <View style={{justifyContent: 'center', flex:1}}>

    <TextInput
      style={{ height: 40, borderColor: 'gray', borderWidth: 1 }}
      onChangeText={text => onChangeText(text)}
      value={value}
    />
  </View>  
  );
}

感谢您的帮助。

您正在检查的手机键盘可能有问题,因为我在我的手机博览会上试过了,它工作正常。请参阅下面的屏幕截图,

希望对您有所帮助。有问必答