Skip to content

Instantly share code, notes, and snippets.

View ClarkTheCoder's full-sized avatar
🌴
On vacation

Nil ClarkTheCoder

🌴
On vacation
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();