How to disable auto focus/keyboard popup when the screen loads in .net maui blazor?

1.3k Views Asked by At

I am looking to disable the popup of keyboard when the screen loads (I have a searchbox which is in focus on load) in a .net maui blazor android app. So far I have tried android:windowSoftInputMode="stateHidden" android:windowSoftInputMode="stateAlwaysHidden" in the AndroidManifest.xml which did not work for me.

I see some people have suggested getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN) but I am not sure where to place it in the code? Is there a specific way of doing it in the .net maui blazor framework?

0

There are 0 best solutions below