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)