-
Can I change the transparency of all handwriting uniformly? |
Beta Was this translation helpful? Give feedback.
Replies: 10 comments
-
Yes, you can export the state history and import that state history the next time, allowing you to change the previous edits. The example in the dev branch here shows you how to do it. |
Beta Was this translation helpful? Give feedback.
-
Thanks for your reply and thanks for the wonderful project,it's help a lot…
Can I change the transparency of all handwriting uniformly?
|
Beta Was this translation helpful? Give feedback.
-
Currently, it's not possible to change the transparency from the drawing. However, I have put it on my roadmap here and will release it with the new version |
Beta Was this translation helpful? Give feedback.
-
Okay, thank you very much. My current project requirement is to adjust the transparency of all handwriting, including those that have already been drawn. Do I currently have any methods to implement this feature? |
Beta Was this translation helpful? Give feedback.
-
Currently, there's no way to do this. But I can try to add this feature for you. |
Beta Was this translation helpful? Give feedback.
-
You are so kind, thank you so much! |
Beta Was this translation helpful? Give feedback.
-
Sorry to bother you again. Thank you very much. |
Beta Was this translation helpful? Give feedback.
-
Currently, it's not possible to listen to the text input field. However, I will add a callback for you where you can listen to it. I can't say exactly when I'll have time to do it, but I'll definitely do it today and text you here after I upload it. I will also post then an example of how you can listen to it. |
Beta Was this translation helpful? Give feedback.
-
Okay, I have now released version ProImageEditor.asset(
'demo.jpg',
key: editorKey,
callbacks: ProImageEditorCallbacks(
textEditorCallbacks: TextEditorCallbacks(
onChanged: (value) {
print(value);
},
onEditingComplete: () {
print('onEditingComplete');
},
onSubmitted: (value) {
print(value);
},
),
),
) Btw, if you have any further questions, I'd appreciate it if you could initiate a new Q&A thread in the discuss-tab. This would be beneficial for other users, allowing them to find answers to similar questions directly. |
Beta Was this translation helpful? Give feedback.
-
Thank you so much!! |
Beta Was this translation helpful? Give feedback.
Yes, you can export the state history and import that state history the next time, allowing you to change the previous edits. The example in the dev branch here shows you how to do it.