Sencha Touch TapPanelを使用しており、ビューからビューを下に移動したいと考えています。
Ext.create('Ext.TabPanel', {
itemId: 'panel',
fullscreen: true,
defaults: {
styleHtmlContent: true
},
tabBarPosition: 'bottom',
layout: {
type: 'card',
animation: {
type: 'fade'
}
},
items: [{
title: 'Home',
html: 'Home Screen'
}, {
title: 'Contact',
xtype: 'OfferDetailView'
}]
});
ユーザーが にいるOfferDetailView
場合、ボタンが必要です。ユーザーがボタンをクリックすると、ビューfoo
に移動し、タブパネルに戻るために戻るボタンで表示する必要があります。この問題をサポートしている Sencha Touch の機能やフレームワークはありますか?
activeItem をビューに設定できます
Ext.Viewport.animateActiveItem(foo, {type: 'slide', direction: 'left'});
しかし、戻るボタンはありません。そのため、手動で追加して、スタック上のすべてのビューを管理する必要があります。