
Rectangle {
id: delegate
signal delegateClicked(int index)
width: delegate.ListView.view.width
height: 40
color: "white" ------> change this to black
Text {
id: titleText
elide: Text.ElideRight
text: name
color: "black" ------> change this to white
Item {
id: delegate
signal delegateClicked(int index)
width: delegate.ListView.view.width
height: 40
Rectangle {
id: background
anchors.fill: delegate
color: "black"
opacity: 0.5 // or some other value
}
Text {
id: titleText
elide: Text.ElideRight
text: name
color: "white"
font.pixelSize: standardFontSize
anchors.fill: delegate
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
}
}
....
| The Following 5 Users Say Thank You to marxian For This Useful Post: | ||
Actually.. any link for all variables that control flick scrolling speed. (drag distance, drag velocity, drag+drag->more speed, possibility to give more and more speed to list scrolling)
Letīs make this killer app for that platform. Or at least I hope that you get nice feedback from here that helps you 


function toggleMenu() {
/* Toggle the state of the menu */
if (menuLoader.source == "") {
menuLoader.source = "MenuList.qml";
menuTimer.running = true; ------->added
}
else {
menuLoader.item.state = "";
menuTimer.running = true;
}
}
Timer {
id: menuTimer
interval: 600 --------> change to 3000
onTriggered: menuLoader.source = ""
}
Thanks!
| The Following User Says Thank You to khuong For This Useful Post: | ||
| The Following User Says Thank You to mooglez For This Useful Post: | ||
Actually.. any link for all variables that control flick scrolling speed. (drag distance, drag velocity, drag+drag->more speed, possibility to give more and more speed to list scrolling)| The Following User Says Thank You to marxian For This Useful Post: | ||
Thanks!