How to make `slider.value` reactive?
Hi there! I have a notebook that contains two cells. I'd like to ask: How can I listen to changes in
slider.value
in the second cell? I don't want to modify the first cell.
Suggestions are very welcome!
Here's the notebook:
4 Replies
Hi @Jan-Hendrik Müller, you can replace
silder.value
with solara.use_trait_observe(slider, "value")
Awesome, that works! 🎉
nice!