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

18 lines
400 B
QML

import QtQuick 2.12
Rectangle {
property string name
default property bool selected: false
color: selected ? "#E4A10D" : "#22282A"
width: parent.width
height: parent.height * 0.08
Row {
anchors.verticalCenter: parent.verticalCenter
Text {
font.pointSize: 15
text: name
color: selected ? "white" : "black"
}
}
}