Saving image to list within the app

Is it possible to store an image to tiny db within the app in the list and view it later.

You cannot store binary files to the tinydb, only strings

What you can do is:

  • store the file path to the image
  • convert the image to a base64 string and store that in the tinydb (but then you have the actual image on device already....)