Skip to content

A Flutter PDF App | Read Online, from File, from Assets | Create or Save

Notifications You must be signed in to change notification settings

ahmeriqbal7aa/flutter_pdf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

flutter_pdf

A new Flutter application.

Getting Started

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

Learning Concepts

  • pdf package
  • pdf_flutter package
  • file_picker package
  • path_provider package
  • How to Read file from Internet
  • How to Read file from Assets
  • How to Read file from External Storage's File
  • How to Create/Generate and Save PDF file

In Android

Add below line of code into your app's <AndroidManifest.xml> file.

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>

This is required to access/read file(s) from External Storage.

Working