Flutter Persist Image In Sqflite
i tried a lot but didnt find an Answer for my Problem or couldnt adapt it (Im not so deep in Flutter). I have an Diary where i store the Entries as Text. This works very well! So,
Solution 1:
I think you should use Shared Preferences or Hive packages for saving image or other big values than String. Sqflite is not more comfortable to do that.
Examples of saving the image to local storage:
And if these solutions don't work for you, You can check another StackOverflow question where was answered; how to save the image to local storage with Sqflite. here
Post a Comment for "Flutter Persist Image In Sqflite"