~vthompson/ubuntu-calendar-app/fixes-1247192

1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.0
import Ubuntu.Components 0.1

MainView {
    width: units.gu(20)
    height: units.gu(20)
    Button {
        anchors.fill: parent
        anchors.margins: units.gu(5)
        text: "Close"
        onClicked: Qt.quit()
    }
}