I am building an exercise app, and will like to keep users progress record. For example, when a user completes stage one, and leaves the app. I want to stage one to still carry a mark that says completed. Please can anyone help me on how to achieve this.
Use TinyDb to store user activity.
@Jewel’s right. TinyDb is a simple and effective way to store user data locally. You can easily save the completion status of each stage with TinyDb, and then retrieve this information when the user returns to the app. This way, completed stages can be marked accordingly, providing a seamless experience for your users.
1 Like