Quantcast
Channel: Qt DevNet forums: Qt Quick 1283365070**
Viewing all articles
Browse latest Browse all 4972

[solved]How to animate "width" property of ListView Item ?

$
0
0
Got the above code working. Setting the width of Rectangle to parent.width made it work. Posting here just in case if some one comes under simliar situation. Component {         id: mydelegate         Item {                 width: 780;                 height: 40;                 Rectangle {                     width: parent.width                     height: 40                     color: "#FAFAFA"; radius: 5                     Text {                         text:  mytext                     }               }          }     }

Viewing all articles
Browse latest Browse all 4972

Trending Articles