loginview, signupview angepasst. Fenstergröße angepasst

This commit is contained in:
2023-02-06 09:34:17 +01:00
parent a7b192f256
commit a4ce206ec4
3 changed files with 61 additions and 58 deletions

View File

@@ -20,7 +20,7 @@ public class StartViewApplication extends Application {
@Override
public void start(Stage stage) throws IOException {
FXMLLoader fxmlLoader = new FXMLLoader(StartViewApplication.class.getResource((firstLaunch) ? "signUp-view.fxml" : "login-view.fxml"));
Scene scene = new Scene(fxmlLoader.load(), 1300, 750);
Scene scene = new Scene(fxmlLoader.load(), 1200, 750);
primary = stage;
stage.setTitle("Essen Bestellung im Kindergarten");
stage.setScene(scene);