HomeForm.qml 181 B

1234567891011
  1. import QtQuick 2.0
  2. import QtQuick.Controls 2.0
  3. Page {
  4. title: qsTr("Home")
  5. Label {
  6. text: qsTr("You are on the home page.")
  7. anchors.centerIn: parent
  8. }
  9. }