feat(client/shopping): fxml definition for various UI elements
This commit is contained in:
parent
670de432c5
commit
234c8c3d64
1 changed files with 13 additions and 3 deletions
|
|
@ -8,7 +8,17 @@
|
||||||
|
|
||||||
<AnchorPane xmlns="http://javafx.com/javafx"
|
<AnchorPane xmlns="http://javafx.com/javafx"
|
||||||
xmlns:fx="http://javafx.com/fxml"
|
xmlns:fx="http://javafx.com/fxml"
|
||||||
fx:controller="$CONTROLLER_NAME$"
|
fx:controller="client.scenes.shopping.ShoppingListNewItemPromptCtrl"
|
||||||
prefHeight="400.0" prefWidth="600.0">
|
prefHeight="400.0" prefWidth="600.0">
|
||||||
|
<VBox>
|
||||||
|
<HBox>
|
||||||
|
<Spinner fx:id="amountSelect" />
|
||||||
|
<MenuButton fx:id="unitSelect">Unit...</MenuButton>
|
||||||
|
<MenuButton fx:id="ingredientSelection">Your ingredient...</MenuButton>
|
||||||
|
</HBox>
|
||||||
|
<HBox>
|
||||||
|
<Button onAction="#confirmAdd">Confirm</Button>
|
||||||
|
<Button onAction="#cancelAdd">Cancel</Button>
|
||||||
|
</HBox>
|
||||||
|
</VBox>
|
||||||
</AnchorPane>
|
</AnchorPane>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue