Add loading notice while loading conversations
This commit is contained in:
parent
4b6246de89
commit
751bca008c
1 changed files with 16 additions and 0 deletions
|
@ -69,6 +69,22 @@ Kirigami.ScrollablePage
|
||||||
running: loadingMessage.visible
|
running: loadingMessage.visible
|
||||||
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
|
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Label {
|
||||||
|
text: "Loading conversations from device. If this takes a long time, please wake up your device and then click refresh."
|
||||||
|
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
|
||||||
|
Layout.preferredWidth: page.width / 2
|
||||||
|
horizontalAlignment: Text.AlignHCenter
|
||||||
|
wrapMode: Text.Wrap
|
||||||
|
}
|
||||||
|
|
||||||
|
Label {
|
||||||
|
text: "Tip: If you plug in your device, it should not go into doze mode and should load quickly."
|
||||||
|
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
|
||||||
|
Layout.preferredWidth: page.width / 2
|
||||||
|
horizontalAlignment: Text.AlignHCenter
|
||||||
|
wrapMode: Text.Wrap
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
property string initialMessage
|
property string initialMessage
|
||||||
|
|
Loading…
Reference in a new issue