feat: enhance receipt import functionality with category selection and PDF opening support

This commit is contained in:
Nils-Johan Gynther
2026-05-01 22:46:58 +02:00
parent 5c263a14df
commit 4cbd658fa0
7 changed files with 440 additions and 68 deletions
+6
View File
@@ -0,0 +1,6 @@
import 'dart:typed_data';
import 'pdf_opener_stub.dart'
if (dart.library.js_interop) 'pdf_opener_web.dart' as impl;
Future<bool> openPdfBytes(Uint8List bytes) => impl.openPdfBytes(bytes);