I do not have any components in the library like JFXPassordField, JFXButton and many others. Can you please tell me what to do?
            Asked
            
        
        
            Active
            
        
            Viewed 1,795 times
        
    1 Answers
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
- 
                    
- 
                    
- 
                    
- 
                    
- 
                    It depends, What did you so far? Did you downloaded the `.jar` file? If yes then please tell me which IDE are you using and I can help you integrating it. – Sunflame Sep 07 '17 at 11:37
- 
                    
