Color Picker #217
Answered
by
hm21
Mohamed0Haikel
asked this question in
Q&A
Color Picker
#217
-
I am not able to find showColorPicker in paintEditorConfigs, I need to set it to false to make the user paint with the initial Color only |
Beta Was this translation helpful? Give feedback.
Answered by
hm21
Sep 10, 2024
Replies: 1 comment 1 reply
-
You can override the color picker by setting it to configs: ProImageEditorConfigs(
customWidgets: ImageEditorCustomWidgets(
paintEditor: CustomWidgetsPaintEditor(
colorPicker: (_, __, ___, ____) => null,
),
),
), |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Mohamed0Haikel
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can override the color picker by setting it to
null
, as shown below.