MohamedRejeb / compose-rich-editor

A Rich text editor library for both Jetpack Compose and Compose Multiplatform, fully customizable, supports HTML and Markdown.
https://mohamedrejeb.github.io/compose-rich-editor/
Apache License 2.0
1.15k stars 72 forks source link

Undo/ Redo option for the rich editor #395

Open Burhan7777 opened 3 weeks ago

Burhan7777 commented 3 weeks ago

Is it possible to have functionality of undoing and redoing as we don't get this functionality in TextFields.

VaibhavNalawade commented 6 days ago

You can create stack. undo feature often uses a stack to keep track of actions, where the last action can be undone first (following the LIFO principle)

Burhan7777 commented 6 days ago

thank you I will try it out.