赞
踩
TextInput({text:'文本输入'}) // 设置默认文字
.width('80%') // 设置宽度
.fontColor(Color.Red) // 设置字体颜色
.fontSize(30) // 设置字体大小
.fontWeight(FontWeight.Bold) // 设置字体粗细
TextInput({placeholder:'请输入文本'}) // 设置placeholder文字
.width('80%') // 设置宽度
.placeholderColor(Color.Green) // 设置placeholder字体颜色
.placeholderFont({size: 20,weight:FontWeight.Bold}) // placeholder字体大小,粗细
InputType.Password 密码输入框
InputType.PhoneNumber 手机号码输入框
InputType.Email 邮箱输入框
InputType.Number 数字输入框
InputType.Normal 一般文本输入框
.caretColor(Color.Red) // 设置光标颜色
.onFocus(()=>{
console.log('获取聚焦')
})
.onBlur(()=>{
console.log('失去聚焦')
})
.borderColor(Color.Red) // 设置边框颜色
.borderStyle(BorderStyle.Dashed) // 设置边框类型
.borderWidth(1) // 设置边框线框
borderStyle的几种样式
BorderStyle.Dashed 线段
BorderStyle.Dotted 小点点
BorderStyle.Solid 实线
.onChange((text)=>{
console.log(`输入内容:${text}`)
})
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。