Hi,
I developed my delegate this way to accomplish it …
Component {
id: categoryDelegate
Text {
id: delText
x: 25;
color: ListView.isCurrentItem ? "white" : "red"
text: name;
font.family: openSansReg.name
font.pointSize: 36
Behavior on color { ColorAnimation {duration: 200 }}
}
}
↧