对于IOS-如何在本机基础输入中使文本垂直居中对齐?

时间:2020-10-09 07:21:29

标签: ios reactjs react-native native-base

当前,占位符和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>
);

0 个答案:

没有答案