From a5ba031c9dfc830d3fe44e868c5fd26af2fbb225 Mon Sep 17 00:00:00 2001 From: Orangerot Date: Fri, 26 Jul 2024 17:49:18 +0200 Subject: feat(qt): simple qt qml application --- application.qml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 application.qml (limited to 'application.qml') 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" + } +} -- cgit v1.2.3