My Profile UI implemented.

This commit is contained in:
Asal Lotfi
2025-08-31 18:25:56 +03:30
parent e507f64aba
commit 1a87dcc359
9 changed files with 305 additions and 70 deletions
@@ -277,4 +277,13 @@ public class MainController {
private void updateLabelsForLightMode() {
//myLabel.setStyle("-fx-text-fill: black;");
}
// === Overlay Handling ===
public void showOverlay(Node overlayNode) {
mainRoot.getChildren().add(overlayNode);
}
public void closeOverlay(Node overlayNode) {
mainRoot.getChildren().remove(overlayNode);
}
}