window-management-rpc: Client for testing out grpc proxy
[src/window-management-client-grpc.git] / src / qml / Main.qml
diff --git a/src/qml/Main.qml b/src/qml/Main.qml
new file mode 100644 (file)
index 0000000..151f3b8
--- /dev/null
@@ -0,0 +1,15 @@
+import QtQuick 2.13
+import QtQuick.Window 2.13
+
+Window {
+    id: background
+    width: 800
+    height: 600
+    flags: Qt.FramelessWindowHint
+    visible: true
+
+    Image {
+        anchors.fill: parent
+        source: './images/AGL_HMI_Blue_Background_NoCar-01.png'
+    }
+}