如何在 React Native 中垂直对齐文本输入中的文本?

SoF*_*SoF 5 javascript textinput 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' }}
        />
    )
}
Run Code Online (Sandbox Code Playgroud)

图片:

在此输入图像描述

And*_*ogr 8

textAlignVertical仅适用于 Android。

看来您的问题可以通过 解决paddingBottom: <number>,或者尝试设置lineHeight等于fontSize

  • paddingBottom 解决了我的问题。谢谢! (3认同)