如何在textinput中集中文本

Tyl*_*ang 24 javascript react-native

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

这是jsx中的标记:

<TextInput style={styles.input} placeholder="Your Account" />
Run Code Online (Sandbox Code Playgroud)

在styles.input中,只是尝试添加textAlign:"center",它不起作用.

和将alignAlign添加到标记作为属性一样.有人帮我一个忙吗?谢谢.

kal*_*yad 37

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

textAlign={'center'}
Run Code Online (Sandbox Code Playgroud)

它看起来像

<TextInput style={styles.input} textAlign={'center'} placeholder="Your Account" />
Run Code Online (Sandbox Code Playgroud)

  • textAlign ='center'也可以工作,对我来说看起来更干净 (3认同)
  • 文档中没有提到textAlign(https://facebook.github.io/react-native/docs/textinput)。你是怎么发现的?我还应该遵循其他任何文件吗? (2认同)

tke*_*ers 5

这个bug已经存在了一段时间了,但看起来很快就会合并修复:https://github.com/facebook/react-native/pull/772