本文介绍了在所有 React Native Inputs (iOS) 上关闭 autoCapitalize的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的大部分输入仅在 iOS 上自动大写.我知道我可以将 autoCapitalize 属性设置为 false关闭它的每个输入,但我想知道是否有一个全局配置我可以在项目范围内应用.

Most of my Inputs are being auto-Capitalized on iOS only. I know there's the autoCapitalize property that I could set to false on every input to turn it off but I'm wondering if there's a global config I can apply project-wide.

推荐答案

我不知道任何全局配置,但我能想到的最简单的解决方案是创建一个带有默认 autoCapitalize 价值.

I don't know any global config for that but simplest solution that I can think of would be creating a custom component with default autoCapitalize value.

示例

const CustomTextInput = (props) => (<TextInput autoCapitalize="none" ...props />)

这篇关于在所有 React Native Inputs (iOS) 上关闭 autoCapitalize的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-01 17:37