We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37a72a6 commit db09f34Copy full SHA for db09f34
src/qml/BitcoinApp/Components/ConnectionOptions.qml
@@ -31,5 +31,13 @@ ColumnLayout {
31
Layout.fillWidth: true
32
text: qsTr("Only when on Wi-Fi")
33
description: qsTr("Loads quickly when on wi-fi and pauses when on cellular data.")
34
+ detail: ProgressIndicator {
35
+ implicitWidth: 50
36
+ SequentialAnimation on progress {
37
+ loops: Animation.Infinite
38
+ SmoothedAnimation { to: 1; velocity: 1; }
39
+ SmoothedAnimation { to: 0; velocity: 1; }
40
+ }
41
42
}
43
0 commit comments