Gtixlb / JavaFX-DashboardFx

JavaFx Dashboard

Home Page:https://gleidson28.github.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

News Version License

This project is part of the set of custom components created for JavaFx.

Comming soon.
  • 1 Style Guide.
  • 2 New custom Controls.
  • 3 More bootstrap theme.
  • 4 New Dashboard Style.
  • 5 New Version of Dashboard.
  • 6 GridFx (tests).
  • 7 New fxml samples.
  • 8 Default models .

DashboardFx

This dashboard is a collection of the samples for javafx creators.

Find templates, themes, controls, custom uis.

Library Dependency

find the dependencies in the lib folder.

How to use css scheme

In the scene

getScene().getStylesheets().addAll(
    getClass().getResource("/com/gn/theme/css/fonts.css").toExternalForm(), // 1 
    getClass().getResource("/com/gn/theme/css/material-color.css").toExternalForm(), // 2
    getClass().getResource("/com/gn/theme/css/skeleton.css").toExternalForm(), // 3
    getClass().getResource("/com/gn/theme/css/light.css").toExternalForm(), // 4
    getClass().getResource("/com/gn/theme/css/bootstrap.css").toExternalForm(), // 5
    getClass().getResource("/com/gn/theme/css/simple-info.css").toExternalForm(), // 6
    getClass().getResource("/com/gn/theme/css/shape.css").toExternalForm(), // 7
    getClass().getResource("/com/gn/theme/css/typographic.css").toExternalForm(), // 8
    getClass().getResource("/com/gn/theme/css/helpers.css").toExternalForm(), // 9 
    getClass().getResource("/com/gn/theme/css/master.css").toExternalForm() // 10
);
  • 1 Load fonts to use in a system that not have this font.
  • 2 Contain a multiples colors used in all CSS system.
  • 3 This CSS override the default theme (Modena), return the max possible for 0% stylized.
    • This technic is used in web development as reset css.
  • 4 Define the lighting theme
    • For dark theme getClass().getResource("/com/gn/theme/css/dark.css").toExternalForm(),
  • 5 Contains util classes.
    • Ex. btn-default, btn-danger..
  • 6 Define the system color used.
    • Ex. The base color used to button is -base.. override color in root.. (.root {-base : blue;}
    • Result in all buttons with color blue;
    • For most details consult wiki page.
  • 7 Used to define a system of typographic.
  • 8 Used to configure shapes for nodes.
    • rectangle, polygon, circles...
  • 9 Additional css for add effects and others.
  • 10 For you replace.

Direct FXml

Don't load the font files direct in the fxml.. can cause instability at the SceneBuilder. The fonts not installed in your system... SceneBuilder does not support load of external fonts. To view fonts in your SceneBuilder, the install fonts in your system.

 <stylesheets>
  <URL value="@../../theme/css/material-color.css" />
  <URL value="@../../theme/css/skeleton.css" />
  <URL value="@../../theme/css/light.css" />
  <URL value="@../../theme/css/bootstrap.css" />
  <URL value="@../../theme/css/simple-info.css" />
  <URL value="@../../theme/css/shape.css" />
  <URL value="@../../theme/css/typographic.css" />
  <URL value="@../../theme/css/helpers.css" />
  <URL value="@../../theme/css/master.css" />
  </stylesheets>

Dashboard

Guide

Youtube view

Youtube link

About

JavaFx Dashboard

https://gleidson28.github.io/

License:GNU General Public License v3.0


Languages

Language:Java 66.4%Language:CSS 33.6%