Bug: Value shows min from slider instead of tag value when navigating

ezgif-2-626814b0c1

I have built a custom slider which works fine except when the value is bound to a tag and there's a minimum set that isn't 0 on the slider. As you can see from the video, on initial page load (refresh) the value shows correctly. However, if I navigate from another view the value shows the "min" value which is set on the slider, in this case 10. If I don't bind the value to a tag then it works fine. Any ideas?

Huh, what's really strange is if I bind the minimum value to a tag as well then the problem goes away...

I suspect your original post got garbled. Should this be, "and there's a non-zero value set on the slider".
Maybe clarify by stating the values for
value :
min :
max :

No, I meant when there's a non-zero min set on the slider. In the example above, the min is set to 10, max is 100 and then the value is bound to a tag "screen_brightness". If I don't bind the value then it works as expected. Worth saying I've built this with embedded views. So it's a label there which is having the issue with its value.

I think I ran into a similar issue in the past, what worked for me was making a custom property that was bound to the tag, I then made sure this binding transient, I then bi-bidirectionally bound the slider value to the custom property, and that seemed to work iirc.