Skip to content

HideSoftInputOnTapped

Vetle444 edited this page Jan 28, 2025 · 2 revisions

We have written a custom implementation of HideSoftInputOnTapped, as it does not work properly for custom controls, and only removes the soft keyboard on Android, not actually removing focus.

Enabling

...
var builder = MauiApp.CreateBuilder();
builder
    .UseMauiApp<App>()
    .UseDIPSUI(options =>
    {
       options.EnableCustomHideSoftInputOnTapped();
    });
...
Clone this wiki locally