-
Notifications
You must be signed in to change notification settings - Fork 150
Home
For years I've been with a lot of examples around the javafx ecosystem, felas that can help me to understand how programing can be used to group that all have passsion for techonology.
But at the same time you can see some libs fell down in the limbo, perhaps java is really compatible with other versions, and its sintaxes doesn't have too brutal diferences.
To my effort and passion to maintaing peopple passionate JavaFx I create this project and visions.
To maintain and build some examples it's necessary some strucuture to avoid getting lost.
I've deciding to maintaing three basics projects.
This projects are used as github modules.
graph TD;
Presentation-->DashboardFx
CodeBlocks-->DashboardFx
Glad-->DashboardFx
At first seight in imperative style, I fell in love.
This style can be easy to understand and set a flux of actions to build things.
...
new BlockCode()
.theme(Theme.GITHUB)
.codeType(CodeType.JAVA)
.content("MyCode code = new Code();")
.build();
...
presentation
.h1("Welcome")
.separator()
.text("""
Lorem ipsum dolor color,
Lorem ipsum dolor color,
""")
.code("""
String string = new String("Welcome");
""");
.build();
...