io.github.palexdev.mfxcomponents.theming.enums.ButtonVariants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of materialfx-all Show documentation
Show all versions of materialfx-all Show documentation
Material Design/Modern components for JavaFX, now packed as a single Jar
package io.github.palexdev.mfxcomponents.theming.enums;
import io.github.palexdev.mfxcomponents.theming.base.Variant;
public enum ButtonVariants implements Variant {
ELEVATED("elevated"),
FILLED("filled"),
FILLED_TONAL("filled-tonal"),
OUTLINED("outlined"),
TEXT("text"),
;
private final String styleClass;
ButtonVariants(String styleClass) {
this.styleClass = styleClass;
}
@Override
public String variantStyleClass() {
return styleClass;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy