Skip to content

Commit db09f34

Browse files
promaghebasto
authored andcommitted
qml: Demo OptionButton detail in wifi-only option
Github-Pull: bitcoin-core#103 Rebased-From: a55553c
1 parent 37a72a6 commit db09f34

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/qml/BitcoinApp/Components/ConnectionOptions.qml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,13 @@ ColumnLayout {
3131
Layout.fillWidth: true
3232
text: qsTr("Only when on Wi-Fi")
3333
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+
}
3442
}
3543
}

0 commit comments

Comments
 (0)