I am trying to make a shopping list where you can type what you want want hit submit and open another screen. On this screen it will show a lot of checkboxes that have your list items so you can check if you have it or not. I am having trouble starting the code for this and any help will be appreciated.
TIMAI2
February 29, 2024, 12:05am
3
This would be a useful tool for your idea
Extension to create/remove visible components dynamicly.
BLOCKS
Create:
[2022-01-20_192218]
Create a visible component in a container.
component: String or Component. component Class Name.
in: Component. where the new component to be created inside.
Remove
[2022-01-20_123711]
Remove the component from screen. if it's a container component, all his children will be removed.
Children
[2022-01-21_195051]
Return a list of component container's children.
This can be used for native component…
ABG
February 29, 2024, 2:35am
5
Think more of lists of data, in List Pickers.
For a To Do List, consider keeping two lists:
To Do
Done
The has two advantages:
The To Do list gets shorter as you complete tasks
The Done list can be used to repopulate the ToDo list for repeating tasks, like Is this my year to vacuum?
Here is my personal To Do List app:
[Capture0]
[Capture1]
[Capture2]
[Capture3]
[Capture4]
(It adds new tasks to the top of the To Do List.
Both the ToDo List and Done List are List Pickers. I build up the To Do List .Text to show it all at a gla…