jfoenix文档地址
http://www.jfoenix.com/index.html#start
jfoenix github地址
https://github.com/sshahine/JFoenix
javafx教程地址
https://www.yiibai.com/javafx/javafx_properties.html#article-start
JavaFx+Jfoenix初始以及搭建
https://www.cnblogs.com/stars-one/archive/2019/06/01/10959878.html
Build
To build JFoenix, execute the following command:
gradlew build
To run the main demo, execute the following command:
gradlew run
How can I use JFoenix?
You can download the source code of the library and build it as mentioned previously. Building JFoenix will generate jfoenix-0.0.0-SNAPSHOT.jar under the jfoenix/build/libs folder. To use JFoenix, import jfoenix-0.0.0-SNAPSHOT.jar into your project and start using the new material design Java components :).
Java 8
<dependency>
<groupId>com.jfoenix</groupId>
<artifactId>jfoenix</artifactId>
<version>8.0.10</version>
</dependency>
JavaFx出现错误Caused by: java.lang.NullPointerException: Location is required的解决方法
https://www.cnblogs.com/stars-one/p/10959869.html