appcelerator-developer-relations / Sample.Todo

Titanium Mobile todo sample app
Other
35 stars 30 forks source link

Sample.Todo

This is a Titanium Mobile sample app that creates a basic todo list. With this app you can maintain a listing of tasks to be completed, add to that list, and mark tasks as done.

Topics Covered

SQL for pre-populated todo.sqlite file

create table if not exists todo (item text, done integer);
insert into todo (item,done) values ('Pick Up Laundry',0);
insert into todo (item,done) values ('Go Food Shopping',0);
insert into todo (item,done) values ('Call Mom',0);
insert into todo (item,done) values ('Sleep',1);