Select Git revision
Forked from
Vuillemot Romain / INF-TC1
Source project has a limited visibility.
-
Romain Vuillemot authoredRomain Vuillemot authored
Main.qml 438 B
import QtQuick
Window {
width: 640
height: 480
visible: true
title: qsTr("Hello World")
Rectangle {
id: rectangle
x: 220
y: 140
width: 200
height: 200
color: "#110fb3"
Text {
id: _text
x: 59
y: 80
width: 53
height: 41
text: qsTr("TEXTE")
font.pixelSize: 30
}
}
}