I am making an application that is using tab bar with the "More" button. I would like to Override the swipe function and instead of OnClick on the "More" button, the help panel to pop up on swipe (from left to right).
The picture is showing the tabs and the fourth tab button is the "More" button.
Here is my main.qml file.
TabbedPane {
showTabsOnActionBar: false
Tab {
title: "Home"
Page {
id: page1
actions: [
ActionItem {
id: new
title: "New"
},
ActionItem {
id: delete
title: "Delete"
},
]
}
}
}