roskenet / springboot-javafx-support

SpringBoot / JavaFX8 Integration
MIT License
419 stars 140 forks source link

hideView #56

Closed co5dt closed 6 years ago

co5dt commented 6 years ago

There's the convenience method

public static void showView(Class<? extends AbstractFxmlView> window, Modality mode)

Shouldn't there also be one to hide or close it?

octaviospain commented 6 years ago

Closing #59, now that there will be methods for showing the view in different views, I added the convenience method

public void hide() {
    if (stage != null)
        stage.hide();
}
yuleefuck commented 2 years ago

So has the problem been solved?