summaryrefslogtreecommitdiff
path: root/CounterItem.ui.qml
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-02-13 20:41:27 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-02-13 20:41:27 +0800
commit29b5bafe16ba82773da97c77951309d585bc9a6b (patch)
tree57978d3e0196d57a8f31f515d6d93be5bfb21916 /CounterItem.ui.qml
parent896960e9a507c671f685b0536a10d7dc554c9451 (diff)
Shorten names
Use something like import "qeduport" as Eduport
Diffstat (limited to 'CounterItem.ui.qml')
-rw-r--r--CounterItem.ui.qml74
1 files changed, 0 insertions, 74 deletions
diff --git a/CounterItem.ui.qml b/CounterItem.ui.qml
deleted file mode 100644
index cc979d2..0000000
--- a/CounterItem.ui.qml
+++ /dev/null
@@ -1,74 +0,0 @@
-import QtQuick 2.15
-import QtQuick.Controls 2.15
-import QtQuick.Layouts 1.15
-
-Item {
- property alias area: area
-
- Rectangle {
- color: bgColor
- radius: 8
- anchors {
- top: parent.top
- topMargin: 25.6
- left: parent.left
- leftMargin: 12.8
- right: parent.right
- rightMargin: 12.8
- bottom: parent.bottom
- }
-
- RowLayout {
- anchors {
- top: parent.top
- topMargin: 25.6
- left: parent.left
- leftMargin: 25.6
- right: parent.right
- rightMargin: 25.6
- bottom: parent.bottom
- bottomMargin: 25.6
- }
-
- Image {
- source: icon
- sourceSize.height: parent.height
- }
-
- ColumnLayout {
- FontLoader {
- id: bold
- name: "Heebo"
- source: "Heebo/Heebo-Bold.ttf"
- }
-
- Label {
- text: count
- font {
- family: bold.name
- pixelSize: 21
- }
- }
-
- FontLoader {
- id: medium
- name: "Heebo"
- source: "Heebo/Heebo-Bold.ttf"
- }
-
- Label {
- text: title
- font {
- family: medium.name
- pixelSize: 15
- }
- }
- }
- }
-
- MouseArea {
- id: area
- anchors.fill: parent
- }
- }
-}