How can you push a screen on top of a TabbedPane?
I know this is possible with a NavigationPane like below :
NavigationPane {
id: navigationPane
Page {
Container {
Label {
text: "First page"
}
}
actions: [
ActionItem {
title: "Next page"
onTriggered: {
var page = pageDefinition.createObject();
navigationPane.push(page);
attachedObjects: ComponentDefinition {
id: pageDefinition;
source: "secondpage.qml"
}
}
]
}
...
But I try the same on a TabbedPane and it fails because there is no push method for TabbedPanes.
The scenario is to push an about screen using Application menus.
Help..?