Make the main view functional

This commit is contained in:
Aurelien Vaillant
2024-08-13 15:38:24 +02:00
parent 4bb7ec2ba0
commit 3697258d07
4 changed files with 64 additions and 40 deletions
+14
View File
@@ -0,0 +1,14 @@
import QtQuick 2.5
// Display the logo
Rectangle {
width: parent.width
height: parent.height
color: "#000B25"
Image {
anchors.centerIn: parent
source: "../icon.png"
}
}