import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.layout.StackPane;
import javafx.scene.paint.Color;
import javafx.scene.shape.Rectangle;
import javafx.stage.Stage;
import javafx.stage.StageStyle;

public class HelloApplication extends Application {
    @Override
    public void start(Stage stage) {
        // Example Scene
        Rectangle box = new Rectangle(0,0,100, 100);
        box.setFill(Color.RED);
        Label label = new Label("Lorem ipsum dolor sit amet, consectetur adipiscing elit.");
        StackPane stackPane = new StackPane(box, label);
        Scene scene = new Scene(stackPane, 320, 240);
        // Stage
        stage.initStyle(StageStyle.UNIFIED);
        stage.setScene(scene);
        stage.show();
    }

    public static void main(String[] args) {
        launch();
    }
} 