Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 921 Bytes

File metadata and controls

33 lines (27 loc) · 921 Bytes

CustomJavaFXComponents

My own JavaFX-UI Components

ToggleSwitch-UI Component

ToggleSwitch off
toggleSwitchOff
ToggleSwitch on
toggleSwitchOn

private ToggleSwitch toggleSwitch = new ToogleSwitch();
boolean property = toggleSwitch.switchedOnProperty().get();

Usage

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>