Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

white text color by default and impossible to change #1827

Open
1 task done
darkomenx opened this issue Apr 21, 2024 · 0 comments
Open
1 task done

white text color by default and impossible to change #1827

darkomenx opened this issue Apr 21, 2024 · 0 comments
Labels
bug Something isn't working

Comments

@darkomenx
Copy link

Is there an existing issue for this?

Flutter Quill version

9.1.0

Steps to reproduce

1/ just install package
2/ and this basic implementation into Column flutter widget like that :

QuillToolbar.simple(
            configurations: QuillSimpleToolbarConfigurations(
              controller: _controller,
              sharedConfigurations: const QuillSharedConfigurations(
                locale: Locale('fr'),
              ),
            ),
          ),
          Expanded(
            child: QuillEditor.basic(
              configurations: QuillEditorConfigurations(
                customStyles: const DefaultStyles(color: Colors.black, placeHolder: DefaultTextBlockStyle(TextStyle(color: Colors.black, fontSize: 20), VerticalSpacing(5, 5), VerticalSpacing(5, 5), null)),
                customStyleBuilder: (e) { return const TextStyle(fontSize: 12, color: Colors.black); },
                controller: _controller,
                readOnly: false,
                sharedConfigurations: const QuillSharedConfigurations(
                  locale: Locale('fr'),
                ),
              ),
            ),
          )

You can view that I configure all the textStyle config into black color. But nothing change.

Expected results

My Quill widget editor is rendering with background color white then I need to textStyle color is black

Actual results

The Quill widget editor is rendering my textStyle color in white.
I can't view the text that I typed...

Code sample

Code sample
[Paste your code here]

Screenshots or Video

Screenshots / Video demonstration

[Upload media here]

Logs

Logs
[Paste your logs here]
@darkomenx darkomenx added the bug Something isn't working label Apr 21, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant