SpikeThatMike
SpikeThatMike
Same problem as @mmiller-d8, I have done the work around @leonluc-dev posted but its crashing on `Signature/MAC verification failed (internal Keystore code: -30 message: system/security/keystore2/src/operation.rs:850: KeystoreOperation::finish `
I have encountered the same issue, I'm trying to remove an event when the secondary window is closed using the dispose event since there is an event which still fires...
This answer works for me on IOS 15.8 [https://github.com/dotnet/maui/discussions/8172#discussioncomment-8676447](https://github.com/dotnet/maui/discussions/8172#discussioncomment-8676447) ``` Microsoft.AspNetCore.Components.WebView.Maui.BlazorWebViewHandler.BlazorWebViewMapper.AppendToMapping("Disabel_Bounce", (handler, view) => { #if IOS handler.PlatformView.ScrollView.Bounces = false; #endif }); ```