It's possible to create an offline app using flutter

8.6k Views Asked by At

I want to develop offline book reading app using flutter. There is any way in flutter so that user can access book offline.

2

There are 2 best solutions below

0
On

You can download the images/pdf files of your book in the device storage (External Storage) by asking user like

"Hey! Do you want this to be available offline? Cool, click the button and grant the storage permission in order to proceed".

After this, you can download the files from the server in device external storage and use it. Simple!

0
On

you can put data in form of json and load data when you requires it
you can read more about it here

https://flutter.io/assets-and-images/