[Solved] ListView -- Change color of current item text when moving to new item
-
Hi,
I developed my delegate this way to accomplish it ...
@
Component {
id: categoryDelegateText {
id: delText
x: 25;
color: ListView.isCurrentItem ? "white" : "red"
text: name;
font.family: openSansReg.name
font.pointSize: 36
Behavior on color { ColorAnimation {duration: 200 }}
}
}
@