Flutter Build PDF Documents Viewer From URL Using Syncfusion

Flutter Tutorial to Build PDF Documents Viewer From URL Using Syncfusion Library in Android & IOS.

@override
Widget build(BuildContext context) {
  return Scaffold(
    appBar: AppBar(
      title: const Text('Syncfusion Flutter PDF Viewer'),
    ),
    body: SfPdfViewer.network(
      'https://cdn.syncfusion.com/content/PDFViewer/flutter-succinctly.pdf',
    ),
  );
}

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.