Unable to see availableTools property #635
Answered
by
hm21
BhushanBadhe
asked this question in
Q&A
-
|
Beta Was this translation helpful? Give feedback.
Answered by
hm21
Aug 17, 2025
Replies: 1 comment
-
|
There is no such property, and the documentation/examples don’t show anything like that either. Why do you think it should exist? If you want to configure which "paint mode" should be available, you can do that in the config like this: configs: ProImageEditorConfigs(
paintEditor: const PaintEditorConfigs(
enableModeFreeStyle: true,
enableModeArrow: true,
enableModeLine: true,
enableModeRect: true,
enableModeCircle: true,
enableModeDashLine: true,
enableModePolygon: true,
enableModeBlur: true,
enableModePixelate: true,
enableModeEraser: true,
),
) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
BhushanBadhe
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

There is no such property, and the documentation/examples don’t show anything like that either. Why do you think it should exist?
If you want to configure which "paint mode" should be available, you can do that in the config like this: