https://github.com/deryeger/kofx
A library for easier JavaFX development in combination with Kotlin.
https://github.com/deryeger/kofx
javafx kotlin
Last synced: 3 months ago
JSON representation
A library for easier JavaFX development in combination with Kotlin.
- Host: GitHub
- URL: https://github.com/deryeger/kofx
- Owner: DerYeger
- License: gpl-3.0
- Created: 2019-09-25T09:23:07.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-04-05T11:54:31.000Z (over 4 years ago)
- Last Synced: 2025-02-09T00:34:22.182Z (5 months ago)
- Topics: javafx, kotlin
- Language: Kotlin
- Homepage:
- Size: 324 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# kofx
[](https://www.gnu.org/licenses/gpl-3.0.en.html)
[](https://travis-ci.com/DerYeger/kofx)
[](https://jitpack.io/#eu.yeger/kofx)A library for easier and better JavaFX development in combination with Kotlin.
## Installation
```
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```
```
dependencies {
implementation 'eu.yeger:kofx:{version}'
}
```## Content
- Methods for defining structured layouts programmatically
- Extension methods for clean bindings
- Support for JavaFX Property delegation
- Blocking and returning methods for running code on the FX-thread
- WIP Alert DSL## Example
An example project using this library can be found [here](https://github.com/DerYeger/minesweeper).