-
Asked here |
Beta Was this translation helpful? Give feedback.
Answered by
hm21
May 10, 2024
Replies: 1 comment 3 replies
-
To change the icons, you have to set it in the configs. Below is a short example, and here you can see the full example. ProImageEditor.network(
'https://picsum.photos/id/230/2000',
onImageEditingComplete: onImageEditingComplete,
onCloseEditor: onCloseEditor,
configs: ProImageEditorConfigs(
icons: const ImageEditorIcons(
paintingEditor: IconsPaintingEditor(
bottomNavBar: Icons.palette,
lineWeight: Icons.line_weight_rounded,
freeStyle: Icons.roundabout_left,
arrow: Icons.arrow_downward_rounded,
line: Icons.horizontal_rule,
fill: Icons.format_color_fill,
noFill: Icons.format_color_reset,
rectangle: Icons.crop_free,
circle: Icons.lens_outlined,
dashLine: Icons.power_input,
),
),
) |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
hm21
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To change the icons, you have to set it in the configs. Below is a short example, and here you can see the full example.