Клавиатура SwiftKey не будет отображаться для ввода текста в режиме реакции
У меня проблема с реагирующим родным текстовым вводом. на одном экране отображается клавиша быстрого доступа, а на другом - не быстрая клавиатура, а клавиатура по умолчанию.
На приведенном ниже текстовом входе клавиша быстрого доступа показывает:
<TextInput
name="hintText"
enablesReturnKeyAutomatically = {true}
returnKeyType = "done"
maxLength={this.state.maxHintLength}
multiline={true}
placeholder="Enter your hint here"
underlineColorAndroid='rgba(0,0,0,0)'
value={user.hintText}
onChange={this.onHintTextChange}
autoCorrect={false}
style={styles.buttonEditTextBlue}
blurOnSubmit={true}
/>
А на приведенном ниже текстовом входе клавиатуру swiftkey не показывает
<TextInput
underlineColorAndroid='rgba(0,0,0,0)'
value={user.email}
onChange={this.handleEmail}
enablesReturnKeyAutomatically = {true}
type="text"
keyboardType = "email-address"
returnKeyType = "done"
autoCorrect={false}
style={{color:'#333333',height: 40, backgroundColor:'white', marginTop:5,width:'100%',borderRightWidth: 0, borderLeftWidth:0,borderColor: 'lightgray', borderWidth: 1,paddingLeft:10}}
/>