@lras1202 @Priscilla
It is now January 2024 and I can't find a lot of information online about this issue. I have a workaround for this that has been working fine so far.
On the app, use the following formula for the date field section of the OnSelect formula that runs the flow. DatePicker_Meeting is the date picker data card that I tied to the date column on SharePoint. Coalesce is used to return the date "1999-01-01" if the date picker is blank.
Coalesce(Text(DatePicker_Meeting.SelectedDate, "yyyy-mm-dd"), "1999-01-01")
On the flow, I am using the Update files property action since I am working with a document library, but the following should work with a list too. I created an expression for the date field. This expression is checking if the date received from the app is 1999-01-01. If yes, updated the date field with a blank value, else use the actual date from the date picker on the app. "triggerBody()?['date']" is the dynamic content for the date input.
if(equals(triggerBody()?['date'],'1999-01-01'),'',triggerBody()?['date'])
I used 1999 for the date if the date picker is blank because the date field will never have a date from this year. Therefore, this date could be any date.
If there is a simpler way to do this, please let me know.