Files
htpc-client/layouts/components/SidebarElement.qml
T

34 lines
775 B
QML

import QtQuick 2.12
Item {
property var provider
property bool selected: false
width: parent.width * 0.9
height: parent.height * 0.08
anchors.right: parent.right
Rectangle {
color: "white"
anchors.fill: parent
visible: selected ? true : false
radius: 10
}
Row {
anchors.fill: parent
Item {
height: parent.height
width: parent.width * 0.02
}
Image {
source: provider.logo
anchors.verticalCenter: parent.verticalCenter
}
Text {
font.pointSize: 15
text: provider.name
color: selected ? "black" : "white"
anchors.verticalCenter: parent.verticalCenter
}
}
}