Files
Zakaria 1563409cb1
Build / Build for Android (push) Has been cancelled
Build / Build for iOS (push) Has been cancelled
first commit
2026-05-18 14:15:38 -04:00

35 lines
910 B
Dart

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();
},
),
],
);
}
}