Qt Components Hildon  0.20
QML components for Maemo5 with Hildon styling.
 All Classes Functions Properties Groups Pages
window.qml
import QtQuick 1.0
import org.hildon.components 1.0
ApplicationWindow {
id: window
title: qsTr("Window Example")
visible: true
id: button
anchors.centerIn: parent
text: "Push window"
onClicked: windowStack.pushWindow(Qt.resolvedUrl("SecondWindow.qml"))
}
}