当前,占位符和Input内部的文本在底部附近对齐。我想垂直对齐。在android中,它正好位于中心。但是在IOS中,它靠近底部的中心下方有一些空白。
const styles = {
formTextStyle: {
paddingLeft: 17,
fontSize: 17,
fontWeight: 'bold'
},
ItemStyle: {
margin: 5,
backgroundColor: '#fff'
}
};
export const CustomAuthInput = props => (
<Item style={styles.ItemStyle} rounded>
<Input
style={styles.formTextStyle}
autoCorrect={false}
{...props} // doing this provides better control
/>
</Item>
);