How to hide application in ApplicationWindow?
Unsolved
Mobile and Embedded
-
Hi,
I would like to add support for the undo button in the Android mobile application in ApplicationWindows. Unfortunately, after adding "Keys.onBackPressed" the signal is not intercepted. In other places it works fine. What could it be caused by? I want to close or hide my application in cards.
ApplicationWindow { id: appMainID visible: true title: qsTr("Tabs") signal closeWindow Keys.onBackPressed: { console.log("Backbutton main event"); Qt.quit() } //Other code blocks - In the code I also have other elements such as SwipeView }