poppingmoon / aria

A cross-platform Misskey client built with Flutter
https://misskey.io/@aria_app
GNU Affero General Public License v3.0
65 stars 3 forks source link

fix: add a dialog for delete and edit #252

Closed poppingmoon closed 1 month ago

poppingmoon commented 1 month ago

Changed to use a new widget for delete and edit of the note.

The previous approach was to use the context of NoteSheet for showing indicators or routing. The approach does not work well for some cases because the operation deletes the note NoteSheet is watching for, and the context is unmounted before pushing to the post page. With this PR, adding DeleteAndEditDialog, a separate context is used during delete and edit so that the context will not be unmounted.