Fladder/lib/util/file_downloader.dart
PartyDonut bd8faf2f6a
feature(web): Added option to download file and copy stream url (#209)
Co-authored-by: PartyDonut <PartyDonut@users.noreply.github.com>
2025-02-01 15:22:22 +01:00

11 lines
292 B
Dart

import 'package:universal_html/html.dart' as html;
Future<void> downloadFile(String url) async {
try {
html.AnchorElement anchorElement = html.AnchorElement(href: url);
anchorElement.download = url;
anchorElement.click();
} catch (e) {
print('Download error: $e');
}
}