All Projects → gleidsonmt → DashboardFx

gleidsonmt / DashboardFx

Licence: GPL-3.0 License
JavaFx Dashboard

Programming Languages

java
68154 projects - #9 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to DashboardFx

Bank-Account-Simulation
A Bank Account Simulation with JavaFX and SQLite back-end. Material UX|UI.
Stars: ✭ 19 (-93.01%)
Mutual labels:  javafx, javafx-application, javafx-frameworks, javafx-library, javafx-desktop-apps, javafx-project, javafx-components, javafx-gui
JFXGoogleDrive
A JavaFX Google Drive Client (For Demonstration Purposes Only).
Stars: ✭ 29 (-89.34%)
Mutual labels:  javafx, javafx-application, javafx-desktop-apps, javafx-project, javafx-gui
store-pos
It is java accounting software basically developed using javafx which has various modules like purchase, sales, receipts, payments, and journals.
Stars: ✭ 84 (-69.12%)
Mutual labels:  javafx, javafx-application, javafx-desktop-apps, javafx-project
gramophy
A JavaFX based Open-Source YouTube Music Downloader/Player
Stars: ✭ 88 (-67.65%)
Mutual labels:  javafx, javafx-application, javafx-desktop-apps, javafx-gui
OmniGraph
Desktop application for creating graphs and algorithm visualisation
Stars: ✭ 27 (-90.07%)
Mutual labels:  javafx, javafx-application, javafx-desktop-apps, javafx-project
FxEditor
JavaFX rich text editor able to handle billions of lines (WORK IN PROGRESS)
Stars: ✭ 21 (-92.28%)
Mutual labels:  javafx, javafx-desktop-apps, javafx-components, javafx-gui
CurrencyConverter
Currency Converter App using fixer API at http://api.fixer.io
Stars: ✭ 22 (-91.91%)
Mutual labels:  javafx-application, javafx-desktop-apps, javafx-components, javafx-gui
hacklympics
🏆 Full-stack online programming examination system
Stars: ✭ 44 (-83.82%)
Mutual labels:  javafx, javafx-application, javafx-desktop-apps
subtitles-view
基于javaFX的简单字幕处理桌面程序,集成在线翻译及语音转换
Stars: ✭ 368 (+35.29%)
Mutual labels:  javafx, javafx-desktop-apps, javafx-gui
medusa
A JavaFX library for Gauges
Stars: ✭ 605 (+122.43%)
Mutual labels:  javafx, javafx-library, javafx-components
tqrespec
TQRespec - The respec tool for Titan Quest game
Stars: ✭ 59 (-78.31%)
Mutual labels:  javafx, javafx-application, javafx-desktop-apps
vkmusic
Приложение для выгрузки аудио библиотеки из ВК
Stars: ✭ 31 (-88.6%)
Mutual labels:  javafx, javafx-application, javafx-desktop-apps
ChatRoomFX
JavaFX ChatRoom using JAVA RMI
Stars: ✭ 33 (-87.87%)
Mutual labels:  javafx, javafx-application, javafx-desktop-apps
Jabref
Graphical Java application for managing BibTeX and biblatex (.bib) databases
Stars: ✭ 2,385 (+776.84%)
Mutual labels:  javafx, javafx-application, javafx-desktop-apps
Awesomejavafx
A curated list of awesome JavaFX libraries, books, frameworks, etc...
Stars: ✭ 2,488 (+814.71%)
Mutual labels:  javafx, javafx-frameworks, javafx-library
sqlbrowserfx
A feature rich cross platform sql client for SQLite , MySQL.
Stars: ✭ 19 (-93.01%)
Mutual labels:  javafx, javafx-application, javafx-desktop-apps
JasperViewerFX
The JasperViewerFX is a free JavaFX library which aims to avoid use of JasperReport's swing viewer
Stars: ✭ 27 (-90.07%)
Mutual labels:  javafx, javafx-library
jdeploy
Developer friendly desktop deployment tool
Stars: ✭ 282 (+3.68%)
Mutual labels:  javafx, javafx-desktop-apps
animated
🌊 Implicit animations for JavaFX.
Stars: ✭ 79 (-70.96%)
Mutual labels:  javafx, javafx-library
mano-simulator
🖥️ An assembler and hardware simulator for the Mano Basic Computer, a 16 bit computer.
Stars: ✭ 20 (-92.65%)
Mutual labels:  javafx, javafx-application

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].