Created
October 28, 2011 09:30
-
-
Save amrishodiq/1321953 to your computer and use it in GitHub Desktop.
Sencha Touch 2 Tutorial Part 3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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