TextInput 的内容不是垂直居中
TextInput's content is not center vertical
我发现 TextInput
的内容不是垂直居中的(在某些 android 设备,如华为),当 TextInput
的父样式是 {flexDirection: 'row'}
,
看起来基线居中,文字更靠上
我终于找到原因了,这是因为TextInput有默认的padding,我的解决办法是在TextInput样式中添加paddingTop: 0,paddingBottom: 0。
我发现 TextInput
的内容不是垂直居中的(在某些 android 设备,如华为),当 TextInput
的父样式是 {flexDirection: 'row'}
,
看起来基线居中,文字更靠上
我终于找到原因了,这是因为TextInput有默认的padding,我的解决办法是在TextInput样式中添加paddingTop: 0,paddingBottom: 0。