~thomir-deactivatedaccount/ubuntu-calendar-app/trunk-fix-ugly-bits

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()
    }
}