Skip to content
Snippets Groups Projects
Commit d10c5ca8 authored by Harry Linrui XU's avatar Harry Linrui XU
Browse files

Deleted NewBudget.java

parent 6a914346
No related branches found
No related tags found
1 merge request!51Added javadoc to all methods
Pipeline #219215 passed
package no.ntnu.idatt1002.demo.view;
import javafx.geometry.Insets;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.control.TextArea;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.layout.HBox;
import javafx.scene.layout.Pane;
import javafx.scene.layout.StackPane;
import javafx.scene.layout.VBox;
import javafx.scene.text.Font;
import javafx.scene.text.FontPosture;
import javafx.scene.text.FontWeight;
import javafx.stage.Stage;
import java.io.FileInputStream;
import java.io.IOException;
public class NewBudget {
private static StackPane root;
public static Pane getRoot() throws IOException {
TextArea income = new TextArea();
TextArea income2 = new TextArea();
income.setMaxSize(200, 20);
income2.setMaxSize(200, 20);
VBox inputs = new VBox();
inputs.getChildren().addAll(income, income2);
inputs.setAlignment(Pos.CENTER);
inputs.setSpacing(100);
return root;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment