diff options
author | Steru <jerrydream111@gmail.com> | 2024-08-02 10:46:21 +0200 |
---|---|---|
committer | Steru <jerrydream111@gmail.com> | 2024-08-02 10:46:21 +0200 |
commit | a507698b6813604c0d547a2e4c5e1cc65c08f93d (patch) | |
tree | e9639a158688d6afcf92cd9b556bd5b6e2e085e0 /res/gui | |
parent | b5566cbcf7541819490e6e97610485c4194c716f (diff) |
Added SVGs of different sports, extended README, fixed paths.
Diffstat (limited to 'res/gui')
-rw-r--r-- | res/gui/application.qml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/res/gui/application.qml b/res/gui/application.qml new file mode 100644 index 0000000..38da5d6 --- /dev/null +++ b/res/gui/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" + } +} |