page: welcomepage: animations++

This commit is contained in:
Torrie Fischer
2022-10-10 10:42:23 +02:00
parent afa1ec6a4d
commit 6e0aa7f683
2 changed files with 75 additions and 20 deletions

View File

@@ -14,7 +14,7 @@ import NeoChat.Component 1.0
LoginStep {
id: login
showContinueButton: true
showContinueButton: LoginHelper.homeserverReachable
showBackButton: false
title: i18nc("@title", "Login")
@@ -25,7 +25,7 @@ LoginStep {
}
QQC2.Label {
text: "To get started, enter your matrix ID:"
text: i18n("To get started, enter your matrix ID:")
}
Kirigami.FormLayout {
@@ -35,6 +35,8 @@ LoginStep {
onTextChanged: {
if(acceptableInput) {
LoginHelper.matrixId = text
} else {
LoginHelper.matrixId = ""
}
}