Advertisement
Guest User

Untitled

a guest
Dec 26th, 2013
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import QtQuick 2.0
  2. import Sailfish.Silica 1.0
  3.  
  4. Page {
  5.     id: page
  6.     SilicaListView {
  7.         id: listView
  8.         model: 20
  9.         anchors.fill: parent
  10.         header: PageHeader {
  11.             title: "About SailSoma"
  12.         }
  13.         delegate: BackgroundItem {
  14.             Label {
  15.                 x: Theme.paddingLarge
  16.                 text: "Item " + index
  17.             }
  18.             onClicked: console.log("Clicked " + index)
  19.         }
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement