I want to incorporate a search field to the data viewer list, so I can let my users search the image-text list. Is there any way I can do this? I have attached a sample representation of the design I am thinking to interpret :
To filter a data list viewer, I would recommend the following steps
Create a local DB
Create a list variable
Create a UI component with the search terms
Filter your source data using the search term (how you do this will depend on your data source)
Add the filtered data to the list variable created above
Clear the Local DB created above
Loop through the list variable , populating the local db
Thunkable has no native data source filtering blocks. Although this is hard to believe, it is true. You can search the discussion group for strategies of how to filter various data sources (JSON, Firebase, AirTable, Google Sheets).
I would suggest you start with these steps ( even skipping #4 initially), then post specific questions to the group. We can then help you troubleshoot your strategy.