diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2023-03-03 21:54:08 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2023-03-03 21:54:08 +0700 |
commit | 79797c45d7bff5aee2730a59f7811dd7dcc7a3b2 (patch) | |
tree | 8bbb89a4c18f72f747ee0e35817424e76dc8231a /Badge.ui.qml | |
parent | 749b089c40857c6815ba35094d9b7356729e794e (diff) |
remove badge.ui.qml
Diffstat (limited to 'Badge.ui.qml')
-rw-r--r-- | Badge.ui.qml | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/Badge.ui.qml b/Badge.ui.qml deleted file mode 100644 index 78359d6..0000000 --- a/Badge.ui.qml +++ /dev/null @@ -1,25 +0,0 @@ -import QtQuick 2.15 -import QtQuick.Controls 2.15 -import QtQuick.Layouts 1.15 - -Item { - width: badgeContent.width - height: badgeContent.height - Label{ - id: discount - color: "#ffffff" - text: "60% off" - font.pointSize: 8 - rightPadding: 8 - leftPadding: 8 - bottomPadding: 4 - topPadding: 4 - font.family: "Roboto" - background: Rectangle { - width: discount.width - height: discount.height - color: "#fd7e14" - radius: 4 - } - } -} |