Ubuntu Pastebin

Paste from nik90 at Mon, 18 Apr 2016 20:16:00 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
PageStack {
    Page {
        id: p1
        header: PageHeader {
            title: i18n.tr("untitled21")
        }
        
        Button {
           text: i18n.tr("Open page 2")
           onClicked: push(Qt.resolvedUrl("Page2.qml"))
        }
    }
}
Download as text