Using SaveState service in Delphi apps

In Delphi FMX, it is possible to save and retrieve data form the last state of your app.

This mean that, when your app is closed (on Windows and macOS) or moved to the background (on Android), its state’s data such as form’s properties, controls’s inputs and values can be stored to a temporar or permanent stream storage. Then, on the next form creation, these data are loaded and used again.

Let’s see how it can work through this quick tutorial :

Continue reading “Using SaveState service in Delphi apps”