Check out the live demo!
The tutorial includes several checkpoints:
- Blank slate
layout: auto
(view diff)layout: auto
with 'lorem ipsum' (view diff)layout: fit
with 1 child component (view diff)layout: fit
with 2 children (view diff)layout: card
with 3 children (view diff)Ext.TabPanel
with 3 children (view diff)Ext.TabPanel
with customized card switch transition (view diff)Ext.Carousel
with 3 children (view diff)Ext.Carousel
withdirection: 'vertical'
(view diff)layout: vbox
(view diff)layout: vbox
withpack: 'center'
(view diff)layout: vbox
withdefaults: {flex: 1}
(view diff)layout: hbox
withdefaults: {flex: 1}
(view diff)- Traffic light carousels (view diff)
- Exquisite corpse game (view diff)
- Exquisite corpse game with credits (view diff)
- Exquisite corpse game with docked credits (view diff)
Using this repository to follow the screencast
First, you'll have to clone this repository:
git clone git://github.com/senchalearn/Exquisite-layouts.git
Change into the directory:
cd Exquisite-layouts
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 01a_auto_layout origin/01a_auto_layout
git checkout -b 01b_auto_layout origin/01b_auto_layout
git checkout -b 02a_fit_layout origin/02a_fit_layout
git checkout -b 02b_fit_layout origin/02b_fit_layout
git checkout -b 03_card_layout origin/03_card_layout
git checkout -b 04a_tab_panel origin/04a_tab_panel
git checkout -b 04b_tab_panel origin/04b_tab_panel
git checkout -b 05a_carousel origin/05a_carousel
git checkout -b 05b_carousel origin/05b_carousel
git checkout -b 06a_box_layout origin/06a_box_layout
git checkout -b 06b_box_layout origin/06b_box_layout
git checkout -b 06c_box_layout origin/06c_box_layout
git checkout -b 06d_box_layout origin/06d_box_layout
git checkout -b 07_traffic_light_carousel origin/07_traffic_light_carousel
git checkout -b 08a_exquisite_corpse origin/08a_exquisite_corpse
git checkout -b 08b_exquisite_corpse origin/08b_exquisite_corpse
git checkout -b 08c_exquisite_corpse origin/08c_exquisite_corpse