a small extract from my code below. I want to wait until the jfxsnackbar has shown the message before closing the window. Currently it just closes it too fast without showing the message.
boolean userCreated = true;
JFXSnackbar snackbar = new JFXSnackbar(rootPane);
if (userCreated) {
snackbar.show("User record created", 2000);
Stage stage = (Stage) firstnameText.getScene().getWindow();
stage.close();
}
Your help will be much appreciated!
Regards Louw