mathtrainingstuff/CalenderPage.qml

13 lines
177 B
QML
Raw Normal View History

2018-11-22 12:39:09 +01:00
import QtQuick 2.9
import QtQuick.Controls 2.4
import "./"
Page {
id: cal
signal pageOpened()
Rectangle {
anchors.fill: parent
color: "red"
}
}