Storing Data on a Mobile Device (iOS) even on AppClose

Can Retool Mobile store data on the device (preferably an iOS Device), so that my user can:

  • Enter Data into the App
  • Close the App
  • Go offline
  • Open the App
  • See the Data that was entered.

thx

Hello @danielartic ,
Your best approach is to use local storage, where you can store data like you would with a JSON. You would need to do the following:

  1. Set an event handler to save the info in local storage

    image

  2. Access local storage for the data later
    image

Hope this is of help.