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 035bfef commit 608db8eCopy full SHA for 608db8e
Sources/SkipUI/SkipUI/Components/ProgressView.swift
@@ -95,7 +95,13 @@ public struct ProgressView : View {
95
if value == nil || total == nil {
96
LinearProgressIndicator(modifier: modifier, color: color)
97
} else {
98
- LinearProgressIndicator(progress: Float(value! / total!), modifier: modifier, color: color)
+ LinearProgressIndicator(
99
+ progress: { Float(value! / total!) },
100
+ modifier: modifier,
101
+ color: color,
102
+ gapSize = -8.dp, // Makes sure the progress overlaps the background
103
+ drawStopIndicator = {}
104
+ )
105
}
106
107
0 commit comments