Skip to content

Instantly share code, notes, and snippets.

@amrishodiq
Created October 28, 2011 09:30
Show Gist options
  • Save amrishodiq/1321953 to your computer and use it in GitHub Desktop.
Save amrishodiq/1321953 to your computer and use it in GitHub Desktop.
Sencha Touch 2 Tutorial Part 3
Ext.application({
name: 'App',
launch: function()
{
Ext.create("Ext.TabPanel", {
fullscreen: true,
tabBarPosition: 'bottom',
items: [
{
title: 'Home',
iconCls: 'home',
html: [
'<img src="http://staging.sencha.com/img/sencha.png" />',
'<h1>Belajar Sencha Touch</h1>',
"<p>Kali ini Anda mempelajari Sencha Touch 2. Tutorial ini ",
"akan menunjukkan kepada Anda cara menggunakan tab, list dan ",
"form untuk membangun aplikasi untuk perangkat bergerak</p>",
'<h2>dengan Sencha Touch (2.0.0pr1)</h2>'
].join("")
}
]
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment