What is the difference between list views within the view object of application set-up:
Ext.application({
models: [
...
],
views: [
'Login',
'Home
],
and listing them in the config object of a controller in sencha touch?
config: {
views: [
'Login',
'View'
],