反应原生文本输入不会显示swiftkey键盘

时间:2018-01-22 19:46:47

标签: ios react-native react-native-ios react-native-text swift-keyboard

我遇到了反应原生的textinput问题。在一个屏幕上显示swift键盘,另一个屏幕上没有显示快捷键盘,而是显示默认键盘。

在下面的textinput 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}
            />

在下面的textinput上,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}}
            />

0 个答案:

没有答案