From 1eb056effa7f25b1e047697988a747325fcbd9e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=A6=8C=EA=A6=AB=EA=A6=B6=EA=A6=8F=EA=A7=80=EA=A6=A6?= =?UTF-8?q?=EA=A6=BF=EA=A6=A7=EA=A6=AE=EA=A6=91=EA=A6=A9=EA=A6=AD=EA=A7=80?= Date: Tue, 21 Mar 2023 19:00:56 +0800 Subject: Reorganise default home files --- Counter.ui.qml | 71 ---------------------------------------------------------- 1 file changed, 71 deletions(-) delete mode 100644 Counter.ui.qml (limited to 'Counter.ui.qml') diff --git a/Counter.ui.qml b/Counter.ui.qml deleted file mode 100644 index f75b2ce..0000000 --- a/Counter.ui.qml +++ /dev/null @@ -1,71 +0,0 @@ -import QtQuick 2.15 -import QtQuick.Controls 2.15 -import QtQuick.Layouts 1.15 - -Item { - Rectangle { - color: bgColor - radius: 8 - anchors { - fill: parent - topMargin: 25.6 - leftMargin: 12.8 - rightMargin: 12.8 - } - - Item { - anchors { - fill: parent - margins: 25.6 - } - - Image { - id: image - source: icon - sourceSize.height: column.height * 3 / 4 - fillMode: Image.PreserveAspectFit - x: (parent.width - (width + column.width + 25.6)) / 2 - anchors.verticalCenter: parent.verticalCenter - } - - ColumnLayout { - id: column - spacing: 0 - anchors { - left: image.right - leftMargin: 25.6 - } - - FontLoader { - id: bold - source: "Heebo/Heebo-Bold.ttf" - } - - Label { - text: count - font { - family: bold.name - pointSize: 20.1 - weight: Font.Bold - } - Layout.fillWidth: true - } - - FontLoader { - id: medium - source: "Heebo/Heebo-Medium.ttf" - } - - Label { - text: title - font { - family: medium.name - pointSize: 15 - weight: Font.Medium - } - Layout.fillWidth: true - } - } - } - } -} -- cgit v1.2.3