输入框组件----TextInput

TextInput设置默认文字和样式
TextInput({text:'文本输入'}) // 设置默认文字
.width('80%') // 设置宽度
.fontColor(Color.Red) // 设置字体颜色
.fontSize(30) // 设置字体大小
.fontWeight(FontWeight.Bold) // 设置字体粗细
TextInput设置placeholder文字和样式
TextInput({placeholder:'请输入文本'}) // 设置placeholder文字
.width('80%') // 设置宽度
.placeholderColor(Color.Green) // 设置placeholder字体颜色
.placeholderFont({size: 20,weight:FontWeight.Bold}) // placeholder字体大小,粗细
TextInput支持的几种输入框类型
InputType.Password 密码输入框
InputType.PhoneNumber 手机号码输入框
InputType.Email 邮箱输入框
InputType.Number 数字输入框
InputType.Normal 一般文本输入框
TextInput设置光标颜色<