SettingsForm.qml 184 B

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