Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/deryeger/kofx
A library for easier JavaFX development in combination with Kotlin.
https://github.com/deryeger/kofx
javafx kotlin
Last synced: 6 days 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 (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-04-05T11:54:31.000Z (almost 4 years ago)
- Last Synced: 2024-12-16T07:44:49.812Z (2 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
[![License](https://img.shields.io/github/license/deryeger/kofx?color=green&style=for-the-badge)](https://www.gnu.org/licenses/gpl-3.0.en.html)
[![Travis](https://img.shields.io/travis/com/deryeger/kofx/develop?color=green&style=for-the-badge)](https://travis-ci.com/DerYeger/kofx)
[![JitPack](https://img.shields.io/jitpack/v/github/deryeger/kofx?color=green&style=for-the-badge)](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).