Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pradyuman7/toast-for-java
A Java class that can be used for :bread: like popup messages in simple Java applications.
https://github.com/pradyuman7/toast-for-java
java java-application java-gui-application java-library javafx-application javafx-library library popup-message toast
Last synced: about 1 month ago
JSON representation
A Java class that can be used for :bread: like popup messages in simple Java applications.
- Host: GitHub
- URL: https://github.com/pradyuman7/toast-for-java
- Owner: Pradyuman7
- License: gpl-3.0
- Created: 2019-02-16T09:04:34.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-16T09:21:48.000Z (almost 6 years ago)
- Last Synced: 2024-10-12T18:41:05.548Z (about 1 month ago)
- Topics: java, java-application, java-gui-application, java-library, javafx-application, javafx-library, library, popup-message, toast
- Language: Java
- Homepage:
- Size: 24.4 KB
- Stars: 7
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Toast-For-Java
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
A Java class that can be used for :bread: like popup messages in simple Java applications.## Usage
```java
String toastMsg = "This is the toast message";
int toastMsgTime = 3500; //3.5 seconds
int fadeInTime = 500; //0.5 seconds
int fadeOutTime= 500; //0.5 seconds
Toast.makeText(primarystage, toastMsg, toastMsgTime, fadeInTime, fadeOutTime);
```Also, here `PrimaryStage` is the stage where the toast message will be attached. If you have only one stage then primaryStage is the parameter of the method start of your application.
[Read more about this here](docs.oracle.com/javase/8/javafx/api/javafx/stage/Stage.html).## How to import in Project
Simply go to release section, download the Java class or just copy paste the source code from here in your Javafx application.