Switch
A Switch is a representation of a physical switch that allows users to turn things on or off. Consider using a CheckBox instead if you want the user to select or deselect values, for example in a list with multiple options.
Properties
checked_icon(in image): The icon that is displayed ifcheckedistrue.unchecked_icon(in image): The icon that is displayed ifcheckedisfalse.text(in string): If set tofalsethe checkbox is disabled.enabled(in bool): If set tofalsethe checkbox is disabled.checked(in-out bool): Whether the checkbox is checked or not (default: false).style(in SwitchStyle): Defines the style of the checkbox.
Callbacks
toggled(/* checked */ bool): Thecheckedvalue changed.
Example
import { Switch } from "@vivi/magic.slint";
export component Example inherits Window {
    width: 200px;
    height: 25px;
    Switch {
        text: "Hello World";
    }
}