Create and study flash cards! Create a topic, then add words, definitions and images (URL, upload or draw). Study either side of the flashcard or quiz yourself on the word list screen. Track your progress as you go and see an integrated progress bar on the Topic screen!
Hint #1—don’t use checkboxes or true/false or any other type of binary boolean…
Hint #2—watch my video from yesterday’s post
Answer:
Use user-specific timestamps instead of true false and then a master timestamp upon pressing the “reset button”. Compare the times to see if the cards should be visible or not!
The reset button place a timestamp at the parent level (in my case, topics). In each of my children (flashcards) I have a relation back to the parent. I then do a lookup of this reset timestamp and compare it to each of the “complete this task” timestamp. If the reset timestamp is after the complete timestamp, then it’s no longer “complete” via an if-then-else column.
Glide apps (previously pages) don’t have the swipe feature… not sure if there are plans to add it or not. You can create something similar though with a next button and some logic to display a single item.