中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何设置RichEditor输入框光标、手柄颜色?
微信扫码分享
@Entry @Component struct Index { controller: RichEditorController = new RichEditorController(); options: RichEditorOptions = { controller: this.controller }; build() { Column() { RichEditor(this.options) .onReady(() => { this.controller.addTextSpan('设置了光标手柄颜色。', { }) }) .caretColor(Color.Orange)//光标手柄颜色 .width(300) .height(300) } .width('100%') .height('100%') .justifyContent(FlexAlign.Center) } }