Skip to content
PrinceOfCookies edited this page Jun 6, 2026 · 3 revisions

DervaFX Wiki

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

Visual Overview

Current demo window:

DervaFX demo window

Base application stage:

DervaFX stage shell

Start Here

Current Example

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);

Project State

This wiki describes the current barebones implementation in the public repo, not a larger planned API.

Clone this wiki locally