How to disable ColorPicker in TextEditor? #764
justAsascha
started this conversation in
General
Replies: 1 comment
-
|
Hey @justAsascha If you want to hide certain widgets, you can simply override them with configs: ProImageEditorConfigs(
textEditor: TextEditorConfigs(
widgets: TextEditorWidgets(
appBar: (_, _) => null,
bottomBar: (_, _) => null,
colorPicker: (_, _, _, _) => null,
),
),
), |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello there,
I want to hide the color picker so I can implement my own logic. But I can't find how to remove the color picker in TextEditorConfigs.
Beta Was this translation helpful? Give feedback.
All reactions