first commit
Build / Build for Android (push) Has been cancelled
Build / Build for iOS (push) Has been cancelled

This commit is contained in:
Zakaria
2026-05-18 14:15:38 -04:00
commit 1563409cb1
382 changed files with 45347 additions and 0 deletions
@@ -0,0 +1,34 @@
import 'package:flutter/material.dart';
import '../../services/finamp_settings_helper.dart';
class DownloadLocationDeleteDialog extends StatelessWidget {
const DownloadLocationDeleteDialog({
Key? key,
required this.id,
}) : super(key: key);
final String id;
@override
Widget build(BuildContext context) {
return AlertDialog(
title: const Text("Are you sure?"),
content: const Text(
"Deleting a download location doesn't actually delete any downloads. It just removes the menu entry."),
actions: [
TextButton(
child: const Text("CANCEL"),
onPressed: () => Navigator.of(context).pop(),
),
TextButton(
child: const Text("DELETE"),
onPressed: () {
FinampSettingsHelper.deleteDownloadLocation(id);
Navigator.of(context).pop();
},
),
],
);
}
}