Initial commit

This commit is contained in:
2018-07-10 20:57:11 +02:00
commit f2f55a2830
9 changed files with 298 additions and 0 deletions

11
SettingsForm.qml Normal file
View File

@@ -0,0 +1,11 @@
import QtQuick 2.0
import QtQuick.Controls 2.2
Page {
title: qsTr("Settings")
Label {
text: qsTr("You are on Settings Page")
anchors.centerIn: parent
}
}