0

I do not have any components in the library like JFXPassordField, JFXButton and many others. Can you please tell me what to do?

Mike
  • 23
  • 2
  • The buttons in JavaFX are called [Button](https://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Button.html) –  Sep 07 '17 at 08:43

1 Answers1

2

Those components are part of a third party library called JFoenix.

You can find more information about them here: https://github.com/jfoenixadmin/JFoenix

You can download the .jar file from there or

If you are using maven as dependency management you can add as dependency:

<dependency>
    <groupId>com.jfoenix</groupId>
    <artifactId>jfoenix</artifactId>
    <version>1.4.0</version>
</dependency>

or if you are using gradle:

dependencies {
    compile 'com.jfoenix:jfoenix:1.4.0'
}

but you can find all of these informations on the link that I have added.

How to add jar to classpath:

Eclipse: How to import a jar in Eclipse

IntelliJ: Correct way to add external jars (lib/*.jar) to an IntelliJ IDEA project

NetBeans: How to add a JAR in NetBeans

Sunflame
  • 2,993
  • 4
  • 24
  • 48