Hello! I am hoping to create a list of important dates & upcoming events in my app. This app will not take any front-end user input; it is strictly for relaying information regarding specific projects.
I’m imagining a T/F property in my “Events” database that denotes whether the task has been completed; with something like a check mark or strikethrough to indicate to this status to the user. What is the best way to do this?
I have attached screenshots of my screen as it appears in the live viewer along with my database collection. Greatly appreciate any pointers you all may have, thank you!
Now you have to link the task to the “Status” boolean and link it with an action that change “Status” boolean to “True” when task is done.
What you can continue doing is set a component “icon” in to the view you show which has “sometimes visible” and it may appear when current item “Status” is True.
Thats just a guide but it may help you wondering how to implement it. If you need further help, just Reply!
Then you can show a checkmark or strikethrough based on that. Just make sure your app’s UI updates dynamically when that property changes, so users always see the latest status. If you want it extra clear, you could also add a filter to show only incomplete or completed events