Search code examples
flutterofflinedesktop

How to store offline images in Flutter


I'm creating a flutter project (Desktop only) that will include creating multiple items with images but the app is completely offline so i have to store the images locally somewhere.

I doubt storing them in a database would be a good idea so what is the alternative?

Should i make a folder and copy all the images that is being added and store the image file path in the database?


Solution

  • I ended up doing it the way I described in my question, and it has been working flawlessly.