summaryrefslogtreecommitdiff
path: root/Badge.ui.qml
blob: 78359d66aef66544b0f0f3c05095f80ab6af767f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
		}
	}
}