You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I load pdf a file from assets, the document returned with page count 0. 'package:easy_pdf_viewer/src/document.dart': Failed assertion: line 168 pos 12: 'page > 0': is not true.
My code
abstract class PDFManager {
static Future<String?> getCover(String url) async {
final doc = await PDFDocument.fromAsset(url);
final cover = await doc.get(page: 0);
return cover.imgPath;
}
}
The text was updated successfully, but these errors were encountered:
When I load pdf a file from assets, the document returned with page count 0.
'package:easy_pdf_viewer/src/document.dart': Failed assertion: line 168 pos 12: 'page > 0': is not true.
My code
The text was updated successfully, but these errors were encountered: