diff options
author | Steru <jerrydream111@gmail.com> | 2024-07-26 18:06:13 +0200 |
---|---|---|
committer | Steru <jerrydream111@gmail.com> | 2024-07-26 18:06:13 +0200 |
commit | b5566cbcf7541819490e6e97610485c4194c716f (patch) | |
tree | e0554b108856bb39375288ad07e2f0ffadce12ef /application.qml | |
parent | 39f6ee17569327ecc8e8ea2d254a452445e694f7 (diff) | |
parent | a5ba031c9dfc830d3fe44e868c5fd26af2fbb225 (diff) |
Merge remote-tracking branch 'origin/main'
# Conflicts:
# CMakeLists.txt
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" + } +} |