Hi @AdhamFH ,
Have you solved your problem?
Do you want to display the Gallery Items only when you type some search text within the Search box?
I have made a test on my side, please consider take a try with the following workaround:
Solution1:
Set the Items property of the Gallery to following:
If(
IsBlank(TextSearchBox.Text),
Filter(DataSource, false),
Search(DataSource, TextSearchBox.Text, "Column1", "Column2", ...)
)
Solution2:
Set the Visible property of the Gallery to following:
If(
IsBlank(TextSearchBox.Text),
false,
true
)
Set the Items property of the Gallery to following:
Search(DataSource, TextSearchBox.Text, "Column1", "Column2", ...)
Please consider take a try with above solution, check if the issue is solved.
Best regards,