-
I am working on a MAUI Blazor Hybrid App and everything is going great, but we would like to include a Twitter Timeline on a page and running into an issue on iPhone iOS. When deploying to iOS Local Device the Twitter Timeline is launching in the external default browser and will not load directly in the app. See screenshots below: Code Samples Index.html:
Index.razor:
TwitterTimeline.razor:
I have also setup a very basic app repo that reproduces the issue here: https://github.com/seanrco/maui-blazor-hybrid-twitter-timeline This is currently the main issue gating release of the app and any help tracking down this issue would really be appreciated! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Probably because IOS opens a new tab instead of showing directly in app, there's probably some parameter to configure on IOS platoform |
Beta Was this translation helpful? Give feedback.
-
On Main page you can subscribe to blazorWebView.UrlLoading event and there define loading strategy.
By default, it opens in webview only urls that belong to host '0.0.0.0' (hybrid blazor host). |
Beta Was this translation helpful? Give feedback.
On Main page you can subscribe to blazorWebView.UrlLoading event and there define loading strategy.
By default, it opens in webview only urls that belong to host '0.0.0.0' (hybrid blazor host).