mathtrainingstuff/CalenderPage.qml

13 lines
177 B
QML

import QtQuick 2.9
import QtQuick.Controls 2.4
import "./"
Page {
id: cal
signal pageOpened()
Rectangle {
anchors.fill: parent
color: "red"
}
}