pec1985 / Sample.Todo

Titanium Mobile todo sample app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

  • Local storage with SQLite via Titanium.Database
  • Modular Javascript with CommonJS
  • Multiple window app using a single execution context
  • Native UI features
    • Android menus
    • iOS navigation bar buttons
  • Cross-platform design

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);

About

Titanium Mobile todo sample app

License:Other


Languages

Language:JavaScript 86.6%Language:CSS 13.4%