aboutsummaryrefslogtreecommitdiff
path: root/src/scenes/Scene_settings.qml
diff options
context:
space:
mode:
authorDaniel Teichmann <daniel.teichmann@das-netzwerkteam.de>2021-06-29 15:21:09 +0200
committerDaniel Teichmann <daniel.teichmann@das-netzwerkteam.de>2021-06-29 15:21:09 +0200
commit76212577cb3fd60d41aab175270ede0b2dcdb038 (patch)
tree61265cac9d6a3f5cb25849337dced30942be645b /src/scenes/Scene_settings.qml
parent8f4d0f9d34b3676e6f64fd7b4effab582aabc006 (diff)
downloadRWA.Support.DesktopApp-76212577cb3fd60d41aab175270ede0b2dcdb038.tar.gz
RWA.Support.DesktopApp-76212577cb3fd60d41aab175270ede0b2dcdb038.tar.bz2
RWA.Support.DesktopApp-76212577cb3fd60d41aab175270ede0b2dcdb038.zip
Add feature: Multiple Scenes; Relocate files
Diffstat (limited to 'src/scenes/Scene_settings.qml')
-rw-r--r--src/scenes/Scene_settings.qml29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/scenes/Scene_settings.qml b/src/scenes/Scene_settings.qml
new file mode 100644
index 0000000..5a29071
--- /dev/null
+++ b/src/scenes/Scene_settings.qml
@@ -0,0 +1,29 @@
+import QtQuick 2.9
+import QtQuick.Window 2.2
+import QtQuick.Extras 1.4
+import QtQuick.Controls 2.2
+import QtQuick.Dialogs 1.2
+import QtQuick.Controls.Material 2.3
+
+Item {
+ id: scene_settings
+ objectName: "Scene_settings"
+
+ Rectangle {
+ id: rectangle
+ anchors.fill: parent
+ color: Material.background
+
+ Text {
+ color: Material.foreground
+ text: "Settings tab!"
+ anchors.horizontalCenter: parent.horizontalCenter
+ anchors.verticalCenter: parent.verticalCenter
+ }
+ }
+}
+
+/*##^## Designer {
+ D{i:0;autoSize:true;height:480;width:640}
+}
+ ##^##*/