Skip to content

Instantly share code, notes, and snippets.

View NaashNix's full-sized avatar
🙂
Learning

Ravindu Thilakshana NaashNix

🙂
Learning
View GitHub Profile
import javafx.scene.control.Alert;
import javafx.scene.control.DialogPane;
import java.util.Objects;
public class ModifiedAlertBox {
public Alert alert;
@NaashNix
NaashNix / TextFieldValidator
Last active September 15, 2021 10:14
You can validate text fields in javaFX.
/*
* Copyright (c) 2021. Coded By Ravindu Thilakshana (naashnix) naashnix.bio.link
*/
import javafx.scene.Node;
import javafx.scene.control.TextField;
import javafx.scene.layout.AnchorPane;
import java.util.ArrayList;