itat_challenge/application.qml

14 lines
183 B
QML
Raw Normal View History

2024-07-26 17:49:18 +02:00
import QtQuick
import QtQuick.Controls
ApplicationWindow {
width: 400
height: 400
visible: true
Button {
id: button
text: "A Special Button"
}
}