KFoenix icon indicating copy to clipboard operation
KFoenix copied to clipboard

Results 5 KFoenix issues
Sort by recently updated
recently updated
newest added

JFoenix _does_ [support JDK 9+ now](https://github.com/jfoenixadmin/JFoenix#----). I managed to make it work this way: `build.gradle.kts:` ```kotlin dependencies { implementation("no.tornado:tornadofx:1.7.20") implementation("com.jfoenix:jfoenix:9.0.8") implementation("com.github.bkenn:kfoenix:0.1.3") { exclude("com.jfoenix:jfoenix") } } ``` Thought I'd put it...

Hi, Thanks for this library! After I've tried to run some test apps I get some errors, then I noticed that kotlin-reflect dependency is missing, so I added it and...