fix: show dialog on delete local action

# Conflicts:
#	mobile/lib/repositories/asset_media.repository.dart
This commit is contained in:
shenlong-tanwen 2025-09-22 04:58:52 +05:30
parent 8473dab684
commit 581ded2d03
7 changed files with 44 additions and 11 deletions

View file

@ -22,12 +22,12 @@ class DeleteLocalOnlyDialog extends StatelessWidget {
@override
Widget build(BuildContext context) {
void onDeleteBackedUpOnly() {
context.pop();
context.pop(true);
onDeleteLocal(true);
}
void onForceDelete() {
context.pop();
context.pop(false);
onDeleteLocal(false);
}