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.
Titanium.Database
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);