summaryrefslogtreecommitdiff
path: root/Counter.ui.qml
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-03-21 19:00:56 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-03-21 19:00:56 +0800
commit1eb056effa7f25b1e047697988a747325fcbd9e1 (patch)
tree8635d50ecbcda49c7cee2028351a3a2c0140d5df /Counter.ui.qml
parent567d36d435189d021847edfba247b081bc1e006e (diff)
Reorganise default home files
Diffstat (limited to 'Counter.ui.qml')
-rw-r--r--Counter.ui.qml71
1 files changed, 0 insertions, 71 deletions
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
- }
- }
- }
- }
-}