Scott Conger
Scott Conger
``` QuillEditor( customStyles: DefaultStyles( paragraph: DefaultListBlockStyle( //default text color here list: //default list style here ```
In 9.31, it works like below but you must have material3=true in your theme or it will not work. Ignore ".fq". ``` final iconTheme = fq.QuillIconTheme( iconButtonSelectedData: fq.IconButtonData(style: IconButton.styleFrom(foregroundColor: _theme.scaffoldBackgroundColor,...
I have 3 projects and they all have the same issue, as well. Currently using: Flutter 3.22.1 Dart 3.4.1 flutter_quill: ^9.3.21 Issue with: irondash_engine_context-0.5.3 super_native_extensions-0.8.16 If I force dependencies down...
Okay, I was able to get my projects to run in release mode using the following temporary solution: ``` environment: sdk: '>=3.4.1
``` _fontFamilies = { 'Amatic': GoogleFonts.amaticSc().fontFamily!, 'Annie': GoogleFonts.annieUseYourTelescope().fontFamily!, 'Formal': GoogleFonts.petitFormalScript().fontFamily!, 'Roboto': GoogleFonts.roboto().fontFamily! }; ``` ``` QuillToolbar.simple( configurations: QuillSimpleToolbarConfigurations( buttonOptions: QuillSimpleToolbarButtonOptions( fontFamily: QuillToolbarFontFamilyButtonOptions(rawItemsMap: _fontFamilies, iconSize: 16), fontSize: QuillToolbarFontSizeButtonOptions(rawItemsMap: _fontSizes, iconSize: 16),...
@jnorkus yep, had same issue. and had same temp solution aka downgraded to 3.22.2; compiles fine.
had same issue. downgraded to flutter 3.22.2 and it compiled fine. fair solution until pull request related to #633 is resolved.