I’m trying to use controlsfx notifications on raspi, it works fine on mac but when I run it on raspi, the notification is shown properly but the background blacks out and is only visible after the notification is timed out. And sometime it shows some flickering also. Has anyone seen such an issue?
Notifications notify = Notifications.create()
.title("Title")
.text("Notification test")
.position(Pos.TOP_CENTER)
.hideAfter(javafx.util.Duration.seconds(2));
notify.showInformation();