You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a way that prevents the progress from going below a specified min value.
Something similar to this:
var progress =0f
set(value) {
field =if (value >= max) max
elseif (values <= min) min
else value
updateProgressView()
onProgressChangeListener?.onChange(field)
}
The text was updated successfully, but these errors were encountered:
Add a way that prevents the progress from going below a specified
min
value.Something similar to this:
The text was updated successfully, but these errors were encountered: