I am building a canvas app with a Dataverse data source. I have a gallery where the Items property is set to a Dataverse view which has a filter and it works as expected.
// This code works in the ITEMS property of my gallery
Filter( AssignedUserss, 'AssignedUserss (Views)'.'DIApp Home User Dashboard' )
But the filter in my Dataverse view uses a hard-coded email and I need it to be the logged in user (i.e., User().Email). Can I pass a canvas app variable to the filter in the DV view to replace the hard-coded email value?

If that is not possible, then can I remove this filter from this DV view and perform the additional filter in the ITEMS property of my gallery (i.e., modify the gallery ITEMS formula in the code snippet shown above)? This is a new concept for me so I appreciate any suggestions.