I'm building a JavaFX app. I implemented a dark mode, but it requires restart to apply theme changes since I cannot reach primaryStage from anywhere but start method. How can I reach it and update the style sheets. Or what other method can I use to approach this?
Asked
Active
Viewed 42 times
0
-
1Does this answer your question? [javafx change css at runtime](https://stackoverflow.com/questions/17769388/javafx-change-css-at-runtime) – Miss Chanandler Bong May 16 '20 at 20:59
-
No, I have a Settings class in which I have a toggle for changing the theme. I cannot just simply change the css of the scene of the primaryStage from outside the public void start method. That's the problem. – M. Gasimov May 17 '20 at 13:59