Initial commit (new git name)

This commit is contained in:
Niels
2025-07-14 17:08:05 +02:00
commit 5c111601d7
338 changed files with 28160 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
import QtQuick 2.0
import Sailfish.Silica 1.0
BackgroundItem {
property string headerText: ""
height: label.height + (Theme.paddingLarge * 2)
Label {
id: label
width: parent.width - image.width
//height: Theme.itemSizeLarge
text: headerText
maximumLineCount: 2
wrapMode: Text.WordWrap
font.pixelSize: Theme.fontSizeLarge
font.bold: true
//verticalAlignment: Text.AlignVCenter
anchors.verticalCenter: parent.verticalCenter
anchors.left: parent.left
anchors.leftMargin: Theme.paddingLarge
anchors.right: image.left
anchors.rightMargin: Theme.paddingLarge
color: Theme.primaryColor
// visible: radioBrowser.getCountryName(_country) || playedCountries.count > 0 ? true : false
}
Image {
id: image
anchors.right: parent.right
anchors.rightMargin: Theme.paddingLarge
anchors.verticalCenter: label.verticalCenter
source: "image://theme/icon-m-right"
}
Rectangle {
//visible: fill
anchors.fill: parent
gradient: Gradient {
GradientStop { position: 0.0; color: Theme.rgba(Theme.highlightBackgroundColor,0.125) }
GradientStop { position: 1.0; color: "transparent" }
}
}
}