Skip to content

Instantly share code, notes, and snippets.

@siddharta1337
Created October 3, 2014 22:00
Show Gist options
  • Save siddharta1337/beb1f94fe80a3adf3393 to your computer and use it in GitHub Desktop.
Save siddharta1337/beb1f94fe80a3adf3393 to your computer and use it in GitHub Desktop.
Ext.define('nombreDeMiApp.view.Main', {
extend: 'Ext.Container',
xtype: 'main',
requires: [
'Ext.TitleBar',
],
config: {
items: [
{
docked: 'top',
xtype: 'titlebar',
title: ' Hola Mundo! ',
style: 'background:#ff0000'
},
{
html:"Mi primera app <b> Sencha touch! <b>",
styleHtmlContent:true
}
]
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment