feat: client side search box
This commit is contained in:
parent
65a7b0291a
commit
3c45143d76
9 changed files with 209 additions and 2 deletions
|
|
@ -89,6 +89,8 @@
|
|||
<Font name="System Bold" size="15.0" />
|
||||
</font></Label>
|
||||
|
||||
<fx:include source="SearchBar.fxml" />
|
||||
|
||||
<ListView fx:id="recipeList" />
|
||||
|
||||
<HBox spacing="10">
|
||||
|
|
|
|||
11
client/src/main/resources/client/scenes/SearchBar.fxml
Normal file
11
client/src/main/resources/client/scenes/SearchBar.fxml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<?import javafx.scene.control.TextField?>
|
||||
<?import javafx.scene.layout.HBox?>
|
||||
|
||||
|
||||
<HBox xmlns="http://javafx.com/javafx/25" xmlns:fx="http://javafx.com/fxml/1" fx:controller="client.scenes.SearchBarCtrl">
|
||||
<children>
|
||||
<TextField fx:id="searchField" promptText="Search..." />
|
||||
</children>
|
||||
</HBox>
|
||||
|
|
@ -24,3 +24,5 @@ menu.button.remove.step=Remove Step
|
|||
menu.button.edit=Edit
|
||||
menu.button.clone=Clone
|
||||
menu.button.print=Print recipe
|
||||
|
||||
menu.search=Search...
|
||||
|
|
@ -24,3 +24,5 @@ menu.button.remove.step=Stap verwijderen
|
|||
menu.button.edit=Bewerken
|
||||
menu.button.clone=Dupliceren
|
||||
menu.button.print=Recept afdrukken
|
||||
|
||||
menu.search=Zoeken...
|
||||
|
|
@ -24,3 +24,5 @@ menu.button.remove.step=Usuń instrukcję
|
|||
menu.button.edit=Edytuj
|
||||
menu.button.clone=Duplikuj
|
||||
menu.button.print=Drukuj przepis
|
||||
|
||||
menu.search=Szukaj...
|
||||
Loading…
Add table
Add a link
Reference in a new issue