Todo List Mobile App Phase I coded in the creator.ionic.io environment.
Instruction of the above by Ionic
There are two pages: Todos and Finished Items.
Todos.js was created to service (to share the data) to the above two pages.
Todos page has a function to access items in Todos.items and only display ‘finished’: false items.
Finished Items page has a function to access items in Todos.items and only display ‘finished’: true items. using Angular directives:
Loops using Angular directive:”ng-repeat item in items” and
display items with “ng-show” if “item.finished==true”.