New backend work

Models, account connection, fetching user profiles,
show connected accounts in sidebar
This commit is contained in:
miruka
2019-06-28 18:12:45 -04:00
parent e5bdf6a497
commit a1b4d8900f
27 changed files with 458 additions and 42 deletions

View File

@@ -1,5 +1,6 @@
import QtQuick 2.7
import QtQuick.Controls 2.2
import "Base"
ApplicationWindow {
id: window
@@ -7,7 +8,7 @@ ApplicationWindow {
height: 480
visible: true
color: "black"
title: "Test"
title: "Harmony QML"
property bool debug: false
property bool ready: false
@@ -23,6 +24,10 @@ ApplicationWindow {
id: py
}
Models {
id: models
}
LoadingScreen {
id: loadingScreen
anchors.fill: parent
@@ -38,7 +43,7 @@ ApplicationWindow {
source: uiLoader.ready ? "UI.qml" : ""
Behavior on scale {
NumberAnimation { duration: 100 }
NumberAnimation { duration: HStyle.animationDuration }
}
}
}