Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我发现TextInput' 的内容不是垂直居中的(在某些 android 设备中,如华为),当TextInput' 的父样式为{flexDirection: 'row'}时,看起来基线居中,文本更靠上。
TextInput
{flexDirection: 'row'}
我终于找到了原因,这是因为 TextInput 有默认填充,我的解决方案是在 TextInput 样式中添加 paddingTop: 0,paddingBottom: 0。