Files
nooLight/HomeForm.qml
2018-07-11 19:15:59 +02:00

12 lines
181 B
QML

import QtQuick 2.0
import QtQuick.Controls 2.0
Page {
title: qsTr("Home")
Label {
text: qsTr("You are on the home page.")
anchors.centerIn: parent
}
}