Skip to content

Instantly share code, notes, and snippets.

@TheItachiUchiha
TheItachiUchiha / ToggleSwitch
Last active April 24, 2026 07:52
A simple Toggle Switch using JavaFX
import javafx.beans.property.SimpleBooleanProperty;
import javafx.geometry.Pos;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.layout.HBox;
public class ToggleSwitch extends HBox {
private final Label label = new Label();