This Git repository includes all of the source code used in creating a tutorial about lists in Sencha Touch.
The tutorial includes several checkpoints:
- Blank slate
- Basic setup
- Grouped list
- List with index bar
- List disclosing a generic panel
- List disclosing a detail panel
- Adding a back button
- Adding a title to the detail panel
- Adding a title to the list panel
- Adding transitions
## A list with an index bar ##
First, you'll have to clone this repository:
git clone git://github.com/nelstrom/Sencha-Touch-list-view-demo.git
Change into the directory:
cd Sencha-Touch-list-view-demo
By default, the git clone command will only create the master branch locally. If you want to study the code at each checkpoint, you will have to fetch each of the other branches. You can do so by running the following:
git checkout -b 00_blank_slate origin/00_blank_slate
git checkout -b 01_basic_setup origin/01_basic_setup
git checkout -b 02_grouped_list origin/02_grouped_list
git checkout -b 03_list_with_index origin/03_list_with_index
git checkout -b 04_add_generic_panel origin/04_add_generic_panel
git checkout -b 05_add_detail_panel origin/05_add_detail_panel
git checkout -b 06_add_back_button origin/06_add_back_button
git checkout -b 07_add_title_to_detail_panel origin/07_add_title_to_detail_panel
git checkout -b 08_add_title_to_list_panel origin/08_add_title_to_list_panel
git checkout -b 09_add_transitions origin/09_add_transitions