Files

19 lines
382 B
QML
Raw Permalink Normal View History

import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15
Item {
id: calendarPage
anchors.fill: parent
Rectangle {
anchors.fill: parent
color: "#fafafa"
Text {
text: qsTr("Calendar Page - Placeholder")
anchors.centerIn: parent
font.pointSize: 16
color: "#666"
}
}
}