Issue
I'm figuring out whether or not to build my application based on FXML or plain Java. This is because we are not allowed to use the scene builder.
So my problem is whether or not to use one class to build the entire UI through various methods rather than using multiple FXML Files.
If the class option is the best way then should I implement 1 UI Stage per class or all in one
I've used only FXML upto now but when i tried integrating JFoenix i realized that there was no FXML Code given so this was an issue for me
Solution
I advice you to use JavaFX even when you have to hardcode it because even then your Code will be simpler. Creating an own UI is very complex and nothing for beginners. It needs a team of pro devs to create something like JavaFX. Then in JavaFX all methods you could dream of are included. So if I were you i would use JavaFX because it is a good and existing way to do it.
Answered By - fuggerjaki61
Answer Checked By - Robin (JavaFixing Admin)