如何在React Native中大写TextInput中的输入?我无法通过自动资本化Textfield的属性来大写句子,


import React, { Component } from 'react';   
import { AppRegistry, Text, TextInput, View } from 'react-native';
class PizzaTranslator extends Component {
  constructor(props) {
  super(props);
  this.state = {text: ''};
  }
render() {
  return (
    <View style={{padding: 10}}>
      <TextInput
        style={{height: 40}}
        placeholder="Type here to translate!"
        autoCapitalize="characters"

在这里自动资本化不适合我的Android。

        autoFocus="true"
        onChangeText={(text) => this.setState({text:text})}
      /> 
      <Text style={{padding: 10, fontSize: 42}}>
        {this.state.text.split(' ').map((word) => word && '🍕').join(' ')}
      </Text>
    </View>
 );
}
}
AppRegistry.registerComponent('testapp', () => PizzaTranslator);

我有三星Galaxy S6,带有棉花糖API 23级,我目前正在对此进行测试。这种自动资本活力在其他Android上有效,但在我的却没有。我只是注意到了。移动会影响该物业吗?

我注意到这仅在我的三星默认键盘上发生。我下载了另一个键盘,并且自动资本化正在处理其他键盘。

相关内容

  • 没有找到相关文章

最新更新