Skip to content

Instantly share code, notes, and snippets.

@amrishodiq
Created October 28, 2011 09:21
Show Gist options
  • Save amrishodiq/1321941 to your computer and use it in GitHub Desktop.
Save amrishodiq/1321941 to your computer and use it in GitHub Desktop.
Sencha Touch 2 Tutorial Part 2
Ext.application({
name: 'App',
launch: function()
{
Ext.create("Ext.TabPanel", {
fullscreen: true,
items: [
{
title: 'Home',
iconCls: 'home',
html: 'Assalamu alaikum'
}
]
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment