I thought others might find this useful: Two sliders that don’t overlap. The second’s upper bound is automatically adjusted so not to overlap with the first’s value.
u = Input(100)
l = Input(0)
function main(window)
push!(window.assets, "widgets")
vbox(slider(1:100, value = 100) >>> u,
consume(u) do x
slider(0:(x - 1), value = 0) >>> l
end
)
end
