如何在文本输入中集中文本
How to centralize text in textinput
一个简短的问题。
有没有办法在 react-native 中集中文本 Textinput
?
这是 jsx 中的标记:
<TextInput style={styles.input} placeholder="Your Account" />
在styles.input中,只是尝试添加textAlign:"center"
,它不起作用。
与将 alignAlign 作为属性添加到标记中相同。
有人能帮我一个忙吗?谢谢
这个错误已经存在一段时间了,但看起来很快就会合并一个修复程序:https://github.com/facebook/react-native/pull/772
android-只有textAlignVertical
may also be a necessary component of the solution. See also:
您应该使用 inputText 道具将文本居中对齐,如下所示
textAlign={'center'}
它看起来像
<TextInput style={styles.input} textAlign={'center'} placeholder="Your Account" />
一个简短的问题。
有没有办法在 react-native 中集中文本 Textinput
?
这是 jsx 中的标记:
<TextInput style={styles.input} placeholder="Your Account" />
在styles.input中,只是尝试添加textAlign:"center"
,它不起作用。
与将 alignAlign 作为属性添加到标记中相同。 有人能帮我一个忙吗?谢谢
这个错误已经存在一段时间了,但看起来很快就会合并一个修复程序:https://github.com/facebook/react-native/pull/772
android-只有textAlignVertical
may also be a necessary component of the solution. See also:
您应该使用 inputText 道具将文本居中对齐,如下所示
textAlign={'center'}
它看起来像
<TextInput style={styles.input} textAlign={'center'} placeholder="Your Account" />