David Britch
David Britch
Hi @nor0x It works on my machine - check out https://github.com/davidbritch/dotnet-maui-issues/tree/main/WindowSizeDemo. You have to add SceneDelegate.cs and configure Info.plist to make it work on Mac Catalyst. @mattleibow Personally I'd close...
@Redth https://github.com/dotnet/docs-maui/issues/1216
@guardrex https://www.youtube.com/watch?v=2dllz4NZC0I It doesn't answer all your questions but it's a start. There are two navigation models for .NET MAUI apps. Shell-based apps use a [URI-based routing model](https://learn.microsoft.com/en-gb/dotnet/maui/fundamentals/shell/navigation?view=net-maui-7.0), and permit...
@guardrex Do you create a `NavigationPage` in the `App` class? If not, doing so should make `PopAsync` work. You'll need something like: ``` MainPage = new NavigationPage(new MainPage()); ```
[Microsoft support for Xamarin](https://dotnet.microsoft.com/en-us/platform/support/policy/xamarin) will end on May 1, 2024 for all Xamarin SDKs including Xamarin.Forms. In preparation for this, all issues and PRs in this repository are being closed....
@snechaev Understood, and merged!
See https://learn.microsoft.com/en-us/dotnet/maui/user-interface/controls/webview?view=net-maui-8.0&pivots=devices-maccatalyst#inspect-a-webview-on-mac-catalyst for what I've done for MAUI.
Fixed by #2213
Hi @tompnub This is because when that doc was written, displaying a local HTML file (which worked in Xamarin.Forms) didn't work in MAUI. I'll have to investigate if it's now...
Also, https://github.com/dotnet/docs-maui/issues/2111 for some specifics.