-
Notifications
You must be signed in to change notification settings - Fork 0
Home
PrinceOfCookies edited this page Jun 6, 2026
·
3 revisions
Warning
DEPRECATED: This Wiki page and the associated feature are no longer supported. Please refer to My Website for up-to-date information.
DervaFX is a small JavaFX wrapper library with a chainable API and a Derma-inspired direction.
The project is currently early and intentionally small. The current public surface is focused on:
- Basic containers
- Basic controls
- Floating windows
- Scene theme application
Current demo window:

Base application stage:

DervaRoot root = DervaFX.root();
DervaWindow window = DervaFX.window("Base Window")
.position(24, 24)
.size(360, 220);
window.add(
DervaFX.vbox()
.spacing(8)
.add(DervaFX.label("DervaFX demo"))
.add(DervaFX.button("Click me"))
);
root.add(window);This wiki describes the current barebones implementation in the public repo, not a larger planned API.