Initial login logic

- Get instance general information
- Add BusyIndicator
This commit is contained in:
2023-12-10 00:47:39 -03:00
parent cbf3a5885b
commit 4fd60efa41
10 changed files with 343 additions and 23 deletions

View File

@@ -0,0 +1,41 @@
import QtQuick
import QtQuick.Controls
import "."
StackView {
pushEnter: Transition {
PropertyAnimation {
property: "opacity"
from: 0
to: 1
duration: PStyle.animationDuration
}
}
pushExit: Transition {
PropertyAnimation {
property: "opacity"
from: 1
to: 0
duration: PStyle.animationDuration
}
}
popEnter: Transition {
PropertyAnimation {
property: "opacity"
from: 0
to: 1
duration: PStyle.animationDuration
}
}
popExit: Transition {
PropertyAnimation {
property: "opacity"
from: 1
to: 0
duration: PStyle.animationDuration
}
}
}