1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import QtQuick 2.0
import Ubuntu.Components 0.1
import "dataServiceTests.js" as DataServiceTests
MainView {
width: units.gu(20)
height: units.gu(20)
Button {
anchors.fill: parent
anchors.margins: units.gu(5)
text: "Close"
onClicked: Qt.quit()
}
}
|