- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
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"
here autoCapitalize doesnt works on my 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);
I have samsung galaxy S6 with marshmallow api level 23 and i am currently testing on that. This autocapitalize works on other android but not on mine . I just noticed this. Does mobile effects the property?
最佳答案
我注意到这只发生在我的三星默认键盘上。我下载了另一个键盘,autoCapitalize 在其他键盘上工作。
关于android - 如何在 React Native 中将 TextInput 中的输入大写?我无法通过 TextField 的 autoCapitalize 属性将句子、单词或字符大写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42409400/
我有一个像下面这样的自定义组件 但是当我尝试将 autoCapitalize 设置为单词时它不起作用,为什么? 最佳答案 disableAutoCapitalize 我假设是作为 Prop 传入的
我在尝试自动大写时收到错误消息。如果我删除它,组件会呈现,但在 ios 中默认情况下自动大写是打开的(虽然不是 android)。我想添加属性以确保一致性。 这是错误(为了压缩我删除了完整的属性列表)
可以看出here 、Safari 和 Safari for iPhone 支持所有 HTML 元素,包括已弃用的元素,甚至一些从未属于任何 W3C 规范的专有元素。 在表单的“电子邮件”和“网站”字段
我的登录页面有问题,它是在 Android (Phonegap) 的 Webview 中加载的。我为我的输入字段和表单标签使用了属性 autocorrect="off"autocomplete="of
import React, { Component } from 'react'; import { AppRegistry, Text, TextInput, View } from 'reac
我是一名优秀的程序员,十分优秀!