4f9a47027c
- 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
15 lines
224 B
QML
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"
|
|
}
|
|
}
|