arrow_back history picture_as_pdf This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ~~NOTRANS~~ ~~Title: Slider button~~ A standard button performs an action on click/press. Sometimes it's nice to use a standard button as "confirmation button". In this case it's better to use a slider button. Our standard implementation offers such styling variant: Simply use <file java> Style.addStyleNames(button, "f_slide"); </file> and your button will look and act like a slider: {{:flutterui:sliderbutton.png?nolink&400|}} If you slide to the right, the slider will show a check image and it's not possible to use it again: {{:flutterui:sliderbutton_done.png?nolink&400|}} If you want to use it multiple times, simple add: <file java> Style.addStyleNames(button, "f_slide_reset"); </file> In this case, double press will reset the slider and it will be possible to use it again.