Morten Nielsen
Morten Nielsen
> I would think the build errors (and their troubleshooting) are a burden on WinAppSDK to handle and document, This has nothing to do with the WinAppSDK, but with how...
@Shalini-Ashokan See my simpler fix here that preserves image sizes and matches Label's rendering: https://github.com/dotnet/maui/pull/31412/files
I agree. This shouldn’t be code you need to ask users to do. They’ll just not do it and fail in RTL mode
What issues are you specifically seeing? (can you share the restore error messages?) At this point I haven't observed any specific issues with targeting .NET 10 instead.
I'm assuming this is WPF? I did a bit of experimentation with it and couldn't reproduce it. Stepping through the code, this seems to evaluate correctly each time: https://github.com/Esri/arcgis-maps-sdk-dotnet-toolkit/blob/4b98f1274ef16e7ac57114c1ba9015c82b69c53e/src/Toolkit/Toolkit/UI/Controls/PopupViewer/NavigationSubView.cs#L62 Could...
Btw this PR that was made after 200.8 shipped does also improve how navigation is handled, and could potentially fix your issue: https://github.com/Esri/arcgis-maps-sdk-dotnet-toolkit/pull/690 (Having said that, I tried to reproduce...
> Do updates to the toolkit nuget package happen in concert with the SDK We make fixes here in the repo as soon as we have them so you can...
I have the same question. I do see `IUIApplicationDelegate` has an `HandleEventsForBackgroundUrl` autogenerated extension method delegate, but it crashes the app the moment you try and use it.
I found I can get the callback by adding the following to the Maui App Delegate in my app: ```cs [Export("application:handleEventsForBackgroundURLSession:completionHandler:")] public virtual void HandleEventsForBackgroundUrlCompletion(UIApplication application, string sessionIdentifier, Action completionHandler)...
I hit the property initializer issue today as well. That's quite an oversight I'd also like to see improved.