Eduardo Rodríguez

Results 4 comments of Eduardo Rodríguez

Any workaround for this issue?, I'm having the same problem on Android

Yeah, I opened an [issue](https://github.com/dotnet/maui/issues/13571) on MAUI repo for this, and apparently is fixed on .net-8, but it might not get back-ported to .net-7 😞

Hi @insolito86, on the issue I put a workaround for this case, as I say there is not perfect but works.

Hi @candidodmv sure: modifying the Entry handler for android adding this: On ConnectHandler: `PlatformView.TextChanged += PlatformViewOnTextChanged;` On DisconnectHandler: `PlatformView.TextChanged -= PlatformViewOnTextChanged;` This is the event handler for text changed event...