Skip to content
Snippets Groups Projects
Commit d2323673 authored by Herman Andersen Dyrkorn's avatar Herman Andersen Dyrkorn
Browse files

app design

parent 6077cdba
No related branches found
No related tags found
1 merge request!3Resolve "create input field and a commit button"
File added
File added
<?import javafx.geometry.Insets?> <?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.layout.GridPane?>
<?import javafx.scene.control.Button?> <?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?> <?import javafx.scene.control.ScrollPane?>
<GridPane fx:controller="sample.Controller" <?import javafx.scene.control.TextArea?>
xmlns:fx="http://javafx.com/fxml" alignment="center" hgap="10" vgap="10"> <?import javafx.scene.layout.AnchorPane?>
</GridPane> <?import javafx.scene.text.Text?>
\ No newline at end of file
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="498.0" prefWidth="700.0" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1">
<children>
<Button layoutX="100.0" layoutY="423.0" mnemonicParsing="false" prefHeight="35.0" prefWidth="129.0" text="Submit thought" />
<TextArea layoutX="59.0" layoutY="299.0" prefHeight="106.0" prefWidth="307.0" promptText="Write your thought here..." />
<Text layoutX="65.0" layoutY="31.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Your thoughts" />
<ScrollPane layoutX="1.0" layoutY="40.0" prefHeight="258.0" prefWidth="700.0">
<content>
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Text" wrappingWidth="33.22460746765137" />
</content>
</ScrollPane>
</children>
</AnchorPane>
<?import javafx.geometry.Insets?> <?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.layout.GridPane?>
<?import javafx.scene.control.Button?> <?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?> <?import javafx.scene.control.ScrollPane?>
<GridPane fx:controller="sample.Controller" <?import javafx.scene.control.TextArea?>
xmlns:fx="http://javafx.com/fxml" alignment="center" hgap="10" vgap="10"> <?import javafx.scene.layout.AnchorPane?>
</GridPane> <?import javafx.scene.text.Text?>
\ No newline at end of file
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="498.0" prefWidth="700.0" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1">
<children>
<Button layoutX="100.0" layoutY="423.0" mnemonicParsing="false" prefHeight="35.0" prefWidth="129.0" text="Submit thought" />
<TextArea layoutX="59.0" layoutY="299.0" prefHeight="106.0" prefWidth="307.0" promptText="Write your thought here..." />
<Text layoutX="65.0" layoutY="31.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Your thoughts" />
<ScrollPane layoutX="1.0" layoutY="40.0" prefHeight="258.0" prefWidth="700.0">
<content>
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Text" wrappingWidth="33.22460746765137" />
</content>
</ScrollPane>
</children>
</AnchorPane>
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