我如何在 React Native 的文本输入中垂直对齐文本?
How do I vertically align text in text input at React Native?
我是 React Native 的新手。文本输入中的文本在 android 和 iOS 上看起来不同。如何垂直对齐文本输入中的文本?
我的代码:
import React from "react"
import { TextInput } from "react-native"
export default function Signup() {
return (
<TextInput
style={{ backgroundColor: 'red', height: 30, textAlignVertical: 'top' }}
/>
)
}
图片:
textAlignVertical 仅 Android。
看来您的问题可以通过 paddingBottom: <number>
解决,或者尝试将 lineHeight
设置为 fontSize
。
我是 React Native 的新手。文本输入中的文本在 android 和 iOS 上看起来不同。如何垂直对齐文本输入中的文本?
我的代码:
import React from "react"
import { TextInput } from "react-native"
export default function Signup() {
return (
<TextInput
style={{ backgroundColor: 'red', height: 30, textAlignVertical: 'top' }}
/>
)
}
图片:
textAlignVertical 仅 Android。
看来您的问题可以通过 paddingBottom: <number>
解决,或者尝试将 lineHeight
设置为 fontSize
。