-
-
Notifications
You must be signed in to change notification settings - Fork 128
Document Loading Indicator
Takashi Kawasaki edited this page Dec 12, 2024
·
1 revision
PdfViewer.uri may take long time to download PDF file and you want to show some loading indicator. You can do that by PdfViewerParams.loadingBannerBuilder:
loadingBannerBuilder: (context, bytesDownloaded, totalBytes) {
return Center(
child: CircularProgressIndicator(
// totalBytes may not be available on certain case
value: totalBytes != null ? bytesDownloaded / totalBytes : null,
backgroundColor: Colors.grey,
),
);
}This document is for pdfrx 1.X.X versions. For the latest version, see doc/README.md