1
是否可以在TextInput中將QuickType從鍵盤隱藏? 如何在鍵盤上的React Native TextInput中隱藏QuickType
是否可以在TextInput中將QuickType從鍵盤隱藏? 如何在鍵盤上的React Native TextInput中隱藏QuickType
禁用自動更正還將刪除QuickType建議:
<TextInput
onChangeText={(text) => this.setState({text})}
value={this.state.text}
autoCorrect={false}
/>