📌  相关文章
📜  textalignvertical 在 ios react native 中不起作用 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:25.010000             🧑  作者: Mango

代码示例1
{
    height: 30,
    textAlignVertical: 'center',
    ...Platform.select({
        ios: {
            lineHeight: 30 // as same as height
        },
        android: {}
    })
}