Fixed unable to load crmc_logo in android

This commit is contained in:
Marc Rejohn Castillano 2026-02-22 01:10:11 +08:00
parent 90d3e6bf7b
commit 5c6dec3788

View File

@ -25,7 +25,7 @@ Future<Uint8List> buildTaskPdfBytes(
List<Profile> profiles, List<Profile> profiles,
pdf.PdfPageFormat? format, pdf.PdfPageFormat? format,
) async { ) async {
final logoData = await rootBundle.load('crmc_logo.png'); final logoData = await rootBundle.load('assets/crmc_logo.png');
final logoImage = pw.MemoryImage(logoData.buffer.asUint8List()); final logoImage = pw.MemoryImage(logoData.buffer.asUint8List());
final doc = pw.Document(); final doc = pw.Document();
final created = AppTime.formatDate(task.createdAt); final created = AppTime.formatDate(task.createdAt);