Home > Net >  Is there a way to store and retrieve data locally in flutter?
Is there a way to store and retrieve data locally in flutter?

Time:01-23

I am building a social media app where I have to store images data (Network images) locally.

I tried using local storage but am really confused how to implement it and retrieve data faster.

CodePudding user response:

if you just want to cache images see cached_network_image

or you can use hive to store anything you want.

CodePudding user response:

as a database, you can use sqflite or hive

  • Related