-
Beta Was this translation helpful? Give feedback.
Answered by
hm21
Nov 18, 2024
Replies: 1 comment 1 reply
-
To update that part, modify the configs: ProImageEditorConfigs(
imageEditorTheme: ImageEditorTheme(
subEditorPage: SubEditorPageTheme(
enforceSizeFromMainEditor: true,
positionTop: 0,
positionLeft: 0,
barrierDismissible: true,
barrierColor: const Color(0x90272727),
borderRadius: BorderRadius.circular(10),
transitionsBuilder:
(context, animation, secondaryAnimation, child) {
return child;
}),
), |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
hm21
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To update that part, modify the
imageEditorTheme
property within the configuration settings as shown below. For more details, you can refer to the discuss here.