如何在textinput中集中文本

时间:2015-05-03 09:09:57

标签: javascript react-native

一个简短的问题。
有没有办法在react-native Textinput中集中文本?

这是jsx中的标记:

<TextInput style={styles.input} placeholder="Your Account" />

在styles.input中,只是尝试添加textAlign:"center",它无效。

与将alignAlign添加到标记作为属性相同。 有人帮我一个忙吗? THX。

2 个答案:

答案 0 :(得分:25)

您应该使用inputText道具将文本对齐到中心,如下所示

textAlign={'center'}

它看起来像

<TextInput style={styles.input} textAlign={'center'} placeholder="Your Account" />

答案 1 :(得分:1)

仅限android textAlignVertical也可能是解决方案的必要组成部分。另见:How to align text input correctly in react native?