Hello!
Are there best practices when storing user settings locally in Sencha Touch? Example:
A simple, one user, app where the user can change some settings - like background color, text size etcetera.
Use case:
So I would like to use local storage for this. Can I use the model layer with a LocalStorage proxy? The way I see it, there's only one Settings object: a singleton. How do I handle that?
- The user navigates to the settings view
- The user changes some settings in an ordinary form
- The user clicks save and the settings are persisted
Thanks!