标签: react-native react-native-android
当TextInput的父级样式为TextInput时,我发现{flexDirection: 'row'}的内容不是垂直居中的(在某些Android设备中,例如HUAWEI) , 看起来基线是中心,文字更高。
TextInput
{flexDirection: 'row'}
答案 0 :(得分:5)
我终于找到了原因,这是因为TextInput有默认填充,我的解决方案是将paddingTop:0,paddingBottom:0添加到TextInput样式。