Here is my app.js:
Ext.application({
views: ['SignIn'],
launch: function() {
// Initialize the signin view
Ext.Viewport.add(Ext.create('MyApp.view.SignIn'));
}
});
In MyApp.view.SignIn, I wanna set another view in the Ext.Viewport, so I just wrote Ext.Viewport.setActiveItem(someview).
It worked well. However, how could I add an animation when doing so?
try this: