Skip to content

Instantly share code, notes, and snippets.

@davidtucker
Created February 9, 2012 02:28
Show Gist options
  • Save davidtucker/1776595 to your computer and use it in GitHub Desktop.
Save davidtucker/1776595 to your computer and use it in GitHub Desktop.
Sample Sencha Touch View
Ext.define("CoffeeHunter.view.Main", {
extend: "Ext.TabPanel",
xtype: "main",
config: {
tabBarPosition: "bottom",
ui: "brown",
items: [
{
xtype: "locations",
iconCls: "compass1",
title: "Locations"
},
{
xtype: "applicationsettings",
iconCls: "settings7",
title: "Settings"
},
{
xtype: "aboutapp",
iconCls: "info_plain2",
title: "About"
}
]
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment