Skip to content

Instantly share code, notes, and snippets.

View ClarkTheCoder's full-sized avatar
🏠
Working from home

Nil ClarkTheCoder

🏠
Working from home
View GitHub Profile
package sample;
import javafx.scene.control.Alert;
public class AlertBox {
public static void show(String txt) {
Alert alert = new Alert(Alert.AlertType.INFORMATION);
alert.setContentText(txt);
alert.showAndWait();