moment/harmonyqml/components/Window.qml
miruka 76b699ad64 Organize project files
Put QML components into folders, remove unused ones, split __init__.py
with engine.py.
2019-03-26 05:52:43 -04:00

16 lines
249 B
QML

import QtQuick 2.7
import QtQuick.Controls 2.2
ApplicationWindow {
visible: true
width: 640
height: 700
title: "Harmony QML"
Loader {
anchors.fill: parent
source: "UI.qml"
objectName: "UILoader"
}
}