aboutsummaryrefslogtreecommitdiffstats
path: root/sample-qml/main2.qml
diff options
context:
space:
mode:
Diffstat (limited to 'sample-qml/main2.qml')
-rw-r--r--sample-qml/main2.qml27
1 files changed, 0 insertions, 27 deletions
diff --git a/sample-qml/main2.qml b/sample-qml/main2.qml
deleted file mode 100644
index f2ff4c9..0000000
--- a/sample-qml/main2.qml
+++ /dev/null
@@ -1,27 +0,0 @@
-import QtQuick 2.6
-import QtQuick.Window 2.2
-
-Window {
- visible: true
- width: 1080
- height: 1920
- title: qsTr("AGL sample qml app")
-
- MainForm {
- anchors.fill: parent
- mouseArea.onClicked: {
- Qt.quit();
- }
- }
- onVisibleChanged: {
- if(visible == true)
- {
- console.log("2:visible true")
- console.log("maybe it is okay")
- }
- else{
- console.log("visible2 false")
- }
- }
-
-}