My own JavaFX-UI Components
ToggleSwitch off
ToggleSwitch on
private ToggleSwitch toggleSwitch = new ToogleSwitch();
boolean property = toggleSwitch.switchedOnProperty().get();
If you want to use it you first need to install it to your local .m2 maven repository
run "mvn clean install" and it will be installed to your .m2 repo
From here you can import it as a maven dependency
<dependency>
<groupId>org.erim.components</groupId>
<artifactId>CustomJavaFXComponents</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>