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

30 lines
647 B
QML

import QtQuick 2.12
Item {
property string name
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
}
Text {
font.pointSize: 15
text: name
color: selected ? "black" : "white"
anchors.verticalCenter: parent.verticalCenter
}
}
}