fix dots not showing up correctly
This commit is contained in:
parent
d666733abe
commit
ad0780416d
1 changed files with 2 additions and 2 deletions
|
@ -37,11 +37,11 @@ class BreakSessionScreen(
|
||||||
verticalAlignment = Alignment.CenterVertically,
|
verticalAlignment = Alignment.CenterVertically,
|
||||||
horizontalArrangement = Arrangement.Center,
|
horizontalArrangement = Arrangement.Center,
|
||||||
) {
|
) {
|
||||||
repeat(funPomoDoroTimer.repeats - funPomoDoroTimer.breaksRemaining) {
|
repeat(funPomoDoroTimer.repeats - funPomoDoroTimer.breaksRemaining - 1) {
|
||||||
Dot(color = Color.DarkGray)
|
Dot(color = Color.DarkGray)
|
||||||
}
|
}
|
||||||
if (!funPomoDoroTimer.isInBreak) Dot(Color.Green) else Dot(Color.DarkGray)
|
if (!funPomoDoroTimer.isInBreak) Dot(Color.Green) else Dot(Color.DarkGray)
|
||||||
repeat(funPomoDoroTimer.breaksRemaining - 1) {
|
repeat(funPomoDoroTimer.breaksRemaining) {
|
||||||
Dot(color = Color.Gray)
|
Dot(color = Color.Gray)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue