I have a PowerApp connected to a SharePoint list, with two drop-down controls connected to filter the Browse Gallery. In my SharePoint list, the two fields used for the filters are both non-mandatory and have no default value set, and in the PowerApp, the Default property for each drop-down control is set to "".


The Items property on my drop-down controls is set to:
Distinct('Council ICT Projects PowerApp', OwnerCustom)
The Items property on the Browse Gallery is set to:
SortByColumns(Filter('Council ICT Projects PowerApp', DropdownOwner_BrowseFiltered.Selected.Value in OwnerCustom && DropdownStage_BrowseFiltered.Selected.Value in StageCustom), "Created", If(SortDescending1, Descending, Ascending))
The problem is that when the PowerApp loads, it displays a value in the drop-down and there is no way clear it or display all list items by default, and then filter only on drop-down selection. On screen load the filters should be empty, e.g.

I'd also like to display text when no results are returned to the Browse Gallery, e.g.

Can anyone please help me to achieve this? I believe it will make the app much more user-friendly.
Thank you!