JFoenix is an open source Java library, that implements Google Material Design using Java components
Feel free to create a pull request for adding a link to your project in JFoenix github.
If you like JFoenix :) and want to support this project, you can become a backer on Patreon or Open Collective.
To build JFoenix, execute the following command:
gradlew build
To run the main demo, execute the following command:
gradlew run
NOTE : You need to set JAVA_HOME environment variable to point to Java 1.8 directory.
NOTE : JFoenix requires Java 1.8u60 and above.
For detailed steps on getting the demo running, see the wiki.
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 :).
repositories {
mavenCentral()
}
Reference the repository from this location using:
dependencies {
compile 'com.jfoenix:jfoenix:9.0.10'
}
dependencies {
compile 'com.jfoenix:jfoenix:8.0.10'
}
<dependency>
<groupId>com.jfoenix</groupId>
<artifactId>jfoenix</artifactId>
<version>9.0.10</version>
</dependency>
<dependency>
<groupId>com.jfoenix</groupId>
<artifactId>jfoenix</artifactId>
<version>8.0.10</version>
</dependency>
![Check Box Demo](http://jfoenix.com/gif/checkbox.gif "Check Box Demo")
![Toggle Button Demo](http://jfoenix.com/gif/toggle-button.gif "Toggle Button Demo")
![Dialog Demo](http://jfoenix.com/gif/dialog.gif "Dialog Demo")
![List View Demo](http://jfoenix.com/gif/listview.gif "List View Demo")
![Highlighter](http://jfoenix.com/gif/highlighter.gif "Highlighter")
![Chip View](http://jfoenix.com/gif/chipview.gif "Chip View")
![Nodes List Demo](http://jfoenix.com/gif/nodes-list.gif "Nodes List Demo")
![Masonry Demo](http://jfoenix.com/gif/masonry.gif "Masonry Demo")
![Slider Demo](http://jfoenix.com/gif/slider.gif "Slider Demo")
![Spinner Demo](http://jfoenix.com/gif/spinner.gif "Spinner Demo")
![Icons-Snackbar Demo](http://jfoenix.com/gif/icons-snackbar.gif "Icons-Snackbar Demo")
![Color Picker Demo](http://jfoenix.com/gif/colorpicker-beta.gif "Color Picker Demo")
![Date Picker Demo](http://jfoenix.com/gif/datepicker.gif "Date Picker Demo")
![Time Picker Demo](http://jfoenix.com/gif/timepicker.gif "Time Picker Demo")
![Tree Table View](http://jfoenix.com/gif/treetableview.gif "Tree Table View")
![Grouping Demo](http://jfoenix.com/gif/grouping.gif "Grouping Demo")
This project exists thanks to all the people who contribute.
Special thanks to JetBrains and JProfiler for their support to this project.