Skip to content

Commit

Permalink
fix: Blue dot at the end of progress #WPB-14575 (#3823)
Browse files Browse the repository at this point in the history
  • Loading branch information
borichellow authored Jan 24, 2025
1 parent fffb999 commit 3279a6c
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ fun WireLinearProgressIndicator(
color = colorsScheme().primary,
trackColor = colorsScheme().primaryVariant,
modifier = modifier,
drawStopIndicator = {}
)
}

Expand All @@ -47,9 +48,9 @@ fun WireLinearProgressIndicator(
fun PreviewWireLinearProgressIndicator() = WireTheme {
Box(
modifier = Modifier
.background(colorsScheme().surface)
.padding(dimensions().spacing16x)
.background(colorsScheme().surface)
.padding(dimensions().spacing16x)
) {
WireLinearProgressIndicator(progress = { 0.5f })
WireLinearProgressIndicator(progress = { 0.3f })
}
}

0 comments on commit 3279a6c

Please sign in to comment.