DEV Community

Md Abir Ahsan Tahmim
Md Abir Ahsan Tahmim

Posted on

Flutter: how to show loading progress for pdf in flutter?

I create a PDF viewer, which show PDF from url. The users don't need to download it. Just load from Internet and read. Here is my code for load PDF from internet -

import 'package:flutter/material.dart'
import 'package:advance_pdf_viewer/advance_pdf_viewer.dart';

class PdfPage extends StatelessWidget {
  final String link;
  PdfPage(this.link);
  loadDocument() async {
    PDFDocument

Top comments (0)