gpt4 book ai didi

javascript - 设置下划线长度

转载 作者:行者123 更新时间:2023-12-01 00:25:30 25 4
gpt4 key购买 nike

我想设置下划线长度,你知道我该怎么做吗?

这个下划线的长度取决于单词的长度,我会设置这个尺寸。

View style={consumer.body}>
<View style={consumer.bodyInputs}>
<TextInput
style={consumer.inputs}
placeholder="Codice Fiscale"
keyboardType="default"
underlineColorAndroid="grey"
onChangeText={value => {
//code...
}
}
/>
</View>

这是关于风格

body: {
alignItems: "center",
marginTop: 10,
marginBottom: 10
},
bodyInputs:{
marginTop: 10
},
inputs: {
height: 45,

},

enter image description here

最佳答案

一个简单的方法是使用空 <View /> 。请参阅下面的示例:

   <View style={styles.body}>
<View style={styles.bodyInputs}>
<TextInput
style={styles.inputs}
placeholder="Codice Fiscale"
keyboardType="default"
underlineColorAndroid="grey"
/>
// here we create your bottom border
<View style={{width: 80, height: 1, backgroundColor: '#000'}}/>
</View>
</View>

输出:

output

工作零食:

https://snack.expo.io/Byyvw593r

关于javascript - 设置下划线长度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59050060/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com