You can still use a gallery, but you will adjust its properties to make it look like individual cards. Set the gallery’s layout to be a flexible height gallery. This allows each item (or card) in the gallery to have its own size.
For each item in the gallery, you can customize its appearance to look like a card. This involves:
Using a Vertical Container as your main card Container, and HOrizontal containers inside this first container to adjust elements horizonttaly. Use the shadow effect on the Container, that will make your card more beautifull.
Adjust padding and margins.
Inside each gallery item, you can place labels or other controls that will display the data. Bind these controls to the respective columns of your data source.
Write a formula for the gallery’s Items property that filters the data based on the selections made in the dropdowns. This will dynamically update the cards displayed in the gallery based on the dropdown selections.
EXample:
Filter(YourDataSource, Dropdown1.Selected.Value = YourColumn1, Dropdown2.Selected.Value = YourColumn2) Or
Filter(YourDataSource, Dropdown1.Selected.Value in YourColumn1, Dropdown2.Selected.Value = YourColumn2)
And also you can leverage WrapCount to put as many cards horizontally as you wish to fit on your screen.