BUG
清除下划线
添加属性 underlineColorAndroid值为'tansparent'
<TextInput
placeholder={'宝宝出行必备'}
placeholderTextColor={'#afafaf'} // 占位符的颜色
selectTextOnFocus={true} // 获取焦点的时候内容全部被选中
underlineColorAndroid='transparent'
/>
清除下划线
文字居中
添加样式paddingTop和paddingBottom值为0
<TextInput
placeholder={'宝宝出行必备'}
style={{paddingTop:0, paddingBottom:0,}}
placeholderTextColor={'#afafaf'} // 占位符的颜色
selectTextOnFocus={true} // 获取焦点的时候内容全部被选中
underlineColorAndroid='transparent'
/>
文字居中