Advertisement
Guest User

Untitled

a guest
Sep 6th, 2017
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
QML 0.48 KB | None | 0 0
  1.         //        }
  2.         ListView {
  3.             width: 5 * 90
  4.             spacing: 5
  5.             orientation: ListView.Horizontal
  6.             interactive: true
  7.             contentWidth: count * 90
  8.             Component.onCompleted: {
  9.                 console.log(count)
  10.             }
  11.  
  12.             model: [1, 2, 3, 4, 5, 6, 7, 8, 9]
  13.             delegate: Rectangle {
  14.                 color: "red"
  15.                 width: 90
  16.                 height: 46
  17.             }
  18.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement