moment/harmonyqml/components/Window.qml
miruka 4f9a47027c matrix-nio backend start, QGuiApplication class
- Started work on the matrix-nio backend, which will be used instead
  of matrix-python-sdk for greater control and cleaner design

- Have an Application (QGuiApplication) class to habdle argument parsing
  and setting some Qt properties like application name
2019-04-11 13:22:43 -04:00

15 lines
224 B
QML

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