I have a .Net Maui Blazor Hybrid and Web App.The challenge that I have, is that when I run the solution on windows and in a browser, I am able to type the date in an InputDate field, but on Android it does not allow me to type a date, it forces me to select the date from the date selector.
The reason I want to be able to type the date, is that if a user is born in 1969, it take a lot of scrolling to get to the correct year.
<div class="row"><div class="col-2"><label class="col-form-label">Date of Birth</label></div><div class=" col-4"><InputDate @bind-Value="customer.DateOfBith"></InputDate></div></div>