flutter-quill icon indicating copy to clipboard operation
flutter-quill copied to clipboard

how to change the default text color

Open cledsonv opened this issue 1 year ago • 2 comments

Is there an existing issue for this?

The question

How can I change the color of text written in QuilEditor by default and also change the color of the point and numbers of numbered lists and list bullets

cledsonv avatar Mar 19 '24 21:03 cledsonv

QuillEditor(
    customStyles: DefaultStyles(
       paragraph: DefaultListBlockStyle( //default text color here
       list: //default list style here

saconger avatar May 31 '24 18:05 saconger

_controller.formatTextStyle(0, 0, Style.fromJson({'color': '#fcba03', 'size': 24.0})); 

geronimol avatar Jun 14 '24 19:06 geronimol