diff options
Diffstat (limited to 'application.qml')
-rw-r--r-- | application.qml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/application.qml b/application.qml new file mode 100644 index 0000000..38da5d6 --- /dev/null +++ b/application.qml @@ -0,0 +1,13 @@ +import QtQuick +import QtQuick.Controls + +ApplicationWindow { + width: 400 + height: 400 + visible: true + + Button { + id: button + text: "A Special Button" + } +} |