All Projects → Gleidson28 → Dashboardfx

Gleidson28 / Dashboardfx

Licence: gpl-3.0
JavaFx Dashboard

Programming Languages

java
68154 projects - #9 most used programming language

Labels

Projects that are alternatives of or similar to Dashboardfx

Fakeimagedetection
Fake Image Detection Using Machine Learning
Stars: ✭ 158 (-27.85%)
Mutual labels:  javafx
Javafxsmartgraph
Generic (Java FX) Graph Visualization Library
Stars: ✭ 186 (-15.07%)
Mutual labels:  javafx
Jitwatch
Log analyser / visualiser for Java HotSpot JIT compiler. Inspect inlining decisions, hot methods, bytecode, and assembly. View results in the JavaFX user interface.
Stars: ✭ 2,545 (+1062.1%)
Mutual labels:  javafx
Pchwrm server
PC Hardware Resource Monitor for Raspberry Pi
Stars: ✭ 164 (-25.11%)
Mutual labels:  javafx
Jabref
Graphical Java application for managing BibTeX and biblatex (.bib) databases
Stars: ✭ 2,385 (+989.04%)
Mutual labels:  javafx
Hotsuploader
JavaFX-based Replay Uploader for Heroes of the Storm
Stars: ✭ 190 (-13.24%)
Mutual labels:  javafx
Tools Ocr
树洞 OCR 文字识别(一款跨平台的 OCR 小工具)
Stars: ✭ 2,303 (+951.6%)
Mutual labels:  javafx
Javafx Maven Plugin
Maven plugin to run JavaFX 11+ applications
Stars: ✭ 213 (-2.74%)
Mutual labels:  javafx
Deeplearning4j Examples
Deeplearning4j Examples (DL4J, DL4J Spark, DataVec)
Stars: ✭ 2,215 (+911.42%)
Mutual labels:  javafx
Awesomejavafx
A curated list of awesome JavaFX libraries, books, frameworks, etc...
Stars: ✭ 2,488 (+1036.07%)
Mutual labels:  javafx
Javafx
JavaFX projects, mostly samples and examples
Stars: ✭ 175 (-20.09%)
Mutual labels:  javafx
Fxribbon
Ribbon control for Java, created in JavaFX
Stars: ✭ 178 (-18.72%)
Mutual labels:  javafx
Vocabhunter
VocabHunter helps learners of foreign languages find vital new vocabulary to study.
Stars: ✭ 201 (-8.22%)
Mutual labels:  javafx
Speedment
Speedment is a Stream ORM Java Toolkit and Runtime
Stars: ✭ 1,978 (+803.2%)
Mutual labels:  javafx
Substrate
Create native Java(FX) apps for desktop, mobile and embedded
Stars: ✭ 210 (-4.11%)
Mutual labels:  javafx
Fxgraphics2d
A JavaFX library that allows Java2D code (Graphics2D) to be used to draw to a Canvas node.
Stars: ✭ 157 (-28.31%)
Mutual labels:  javafx
Terminalfx
Java FX Terminal Emulator
Stars: ✭ 187 (-14.61%)
Mutual labels:  javafx
Dev Tools
The most popular software developer tools in one app
Stars: ✭ 221 (+0.91%)
Mutual labels:  javafx
Javafx Gradle Plugin
Gradle plugin that makes it easy to work with JavaFX 11+
Stars: ✭ 214 (-2.28%)
Mutual labels:  javafx
Ui4j
Web Automation for Java
Stars: ✭ 202 (-7.76%)
Mutual labels:  javafx

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)

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].