Tim Miller

Results 202 comments of Tim Miller

Checking with the current .NET 6 and 7 MAUI builds in VS Main, Shell Styles should be working for Hot Reload. The underlying root issue @etvorun should also enable more...

This isn't an issue that can be fixed in this repo, as it's not a MAUI (The UI Framework) issue. I'm not sure if that's a [Xamarin.MaciOS](https://github.com/xamarin/xamarin-macios) issue to be...

Trying with Xcode 14.2, On Catalyst, in a Swift App, with the included plist values and setting the developer flag, I can't get it working there either: https://github.com/drasticactions/MauiRepros/tree/main/WebKitTools It works...

@tstephansen I believe this is unrelated to MAUI. https://github.com/drasticactions/MauiRepros/tree/main/WebViewChartTest The developer tools don't work from a straight Swift or Objective-C Mac Catalyst app either. I think this was broken by...

https://developer.apple.com/documentation/webkit/wkwebview/4111163-isinspectable Seems like it was added for 16.4 https://github.com/xamarin/xamarin-macios/blob/main/src/webkit.cs#L5507-L5509 It should be bound in the next Xamarin.MaciOS Xcode update. Trying out that selector you wrote in Swift and C# it...

The issue linked to this one has nothing to do with what I fixed: https://github.com/dotnet/maui/pull/14610 In short, Apple replaced the APIs for setting the debug flag to make the view...

Can you create a sample repro showing this? Having the actual code implemented into a deployable project would make this easier to debug and for everyone to verify.

I believe this would be a [runtime](http://github.com/dotnet/runtime) issue with Mono AOT. It's unrelated to the MAUI UI framework, outside of the fact that it works in debug mode because MAUIs...

I have a potential workaround for this issue. ![image](https://user-images.githubusercontent.com/898335/213923110-c9e1cf99-794b-40b5-ace4-a8fe6a47d58e.png) Setting "CanDrag" to the NavigationItemView alone isn't enough, I also need to set it to the underlying NavigationItemViewPresenter. Then, magically, once...

@hecksmosis You should be able to attach that to the NavigationItemViewPresenter as well. https://github.com/drasticactions/MauiFeed/blob/main/src/MauiFeed.WinUI/Views/FeedSidebarItem.cs#L237-L252 I have an example of it in my app. Basically, you would attach that the same...