参考demo@Entry @Component struct setTypingStyle { editorController: RichEditorController = new RichEditorController() build() { Column() { RichEditor({ controller: this.editorController }) .padding(0) .width(300) .height(180) .backgroundColor(Color.Yellow) .onReady(() => { this.editorController.setTypingStyle({ fontSize: 30, fontColor: Color.Red }) }) } } }
参考demo