Replies: 1 comment 2 replies
-
In that case, I recommend listening to mainEditorCallbacks: MainEditorCallbacks(
onUpdateLayer: (layer) {
print(layer);
},
/// other callbacks
onScaleStart: (value) {
print(value);
},
onScaleUpdate: (value) {
print(value);
},
onScaleEnd: (value) {
print(value);
},
), |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Sorry to bother you again. I moved the position of the layer in the canvas. Is there a corresponding callback function to get?
Beta Was this translation helpful? Give feedback.
All reactions