Can you guide me in the right direction in order to implement onTap activate the text editor (like instagram story) and also.... #104
-
So I have 3 questions:
What I have:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hello, below is the answer to your questions:
return ProImageEditor.asset(
ExampleConstants.of(context)!.demoAssetPath,
key: editorKey,
callbacks: ProImageEditorCallbacks(
mainEditorCallbacks: MainEditorCallbacks(
onTap: editorKey.currentState!.openTextEditor,
),
onImageEditingStarted: onImageEditingStarted,
onImageEditingComplete: onImageEditingComplete,
onCloseEditor: onCloseEditor,
),
),
All examples can be seen here, and I recommend you to check out the web-demo which contains all these examples. Please let me know if you have more questions. |
Beta Was this translation helpful? Give feedback.
Hello, below is the answer to your questions:
3.0.15
where you have now new callbacks inside themainEditorCallbacks
. Below is the example how to do it now: