aboutsummaryrefslogtreecommitdiffstats
path: root/HomeScreen/qml/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'HomeScreen/qml/main.qml')
-rw-r--r--HomeScreen/qml/main.qml19
1 files changed, 19 insertions, 0 deletions
diff --git a/HomeScreen/qml/main.qml b/HomeScreen/qml/main.qml
index 542f395..143d649 100644
--- a/HomeScreen/qml/main.qml
+++ b/HomeScreen/qml/main.qml
@@ -18,6 +18,7 @@
import QtQuick 2.2
import QtQuick.Window 2.1
import QtQuick.Layouts 1.1
+import HomeScreen 1.0
Window {
visible: true
@@ -26,6 +27,14 @@ Window {
height: container.height * container.scale
title: 'HomeScreen'
+ ApplicationLauncher {
+ id: launcher
+ }
+
+ LayoutHandler {
+ id: layoutHandler
+ }
+
Image {
id: container
anchors.centerIn: parent
@@ -48,6 +57,16 @@ Window {
Layout.fillWidth: true
Layout.fillHeight: true
Layout.preferredHeight: 1920 - 218 - 215
+
+ visible: true
+ }
+
+ Home {
+ id: appLauncherAreaLauncher
+ Layout.fillWidth: true
+ Layout.fillHeight: true
+ Layout.preferredHeight: 1920 - 218 - 215
+ visible: false
}
MediaArea {