diff --git a/Sources/SkipUI/SkipUI/Components/ProgressView.swift b/Sources/SkipUI/SkipUI/Components/ProgressView.swift index 219f90c..1c93123 100644 --- a/Sources/SkipUI/SkipUI/Components/ProgressView.swift +++ b/Sources/SkipUI/SkipUI/Components/ProgressView.swift @@ -103,7 +103,13 @@ public struct ProgressView : View { if value == nil || total == nil { LinearProgressIndicator(modifier: modifier, color: color) } else { - LinearProgressIndicator(progress: Float(value! / total!), modifier: modifier, color: color) + LinearProgressIndicator( + progress: { Float(value! / total!) }, + modifier: modifier, + color: color, + gapSize = -8.dp, // Makes sure the progress overlaps the background + drawStopIndicator = {} + ) } }