How TO - Toggle Hide and Show?

By clicking the button details will show from the toggle button, how to apply corvid coding.

Hello, you would use something like the below on the button click event (Set the box of “More Details” as collapsed on load)


    let vis = $w("#box1").collapsed
    if(vis){
        $w("#box1").expand()
    } else {
        $w("#box1").collapse()
    }


Hi, check this video out on using toggle state - YouTube