Jonathan Peppers

Results 525 comments of Jonathan Peppers

A datatemplate with ~80 lines of XAML and 4 multi-triggers is not going to perform well on mobile. Even if we improved it, it will still be an order of...

@jsuarezruiz what should I be looking for here? @rachelkang is the problem here performance or something with UI behavior? It seems like some scrolling values are wrong after you rotate...

@nacompllo and you were testing this on .NET 7? It might be fixed by this one, which is only in main/.NET 8 currently: * https://github.com/dotnet/maui/pull/14329 I will test your above...

Note that my comment here: ![image](https://github.com/dotnet/maui/assets/840039/6bd0ccfe-c531-4419-a792-2711839d18e9) Is specifically talking about a list of "logical children" that grew indefinitely on Windows.

There appears to be an issue with images on iOS, a failing test: ```csharp [Fact("Image Does Not Leak")] public async Task DoesNotLeak() { SetupBuilder(); WeakReference reference = null; await InvokeOnMainThreadAsync(async...

Yes, this is not fixed until we get these merged: * https://github.com/dotnet/maui/pull/15062 * https://github.com/dotnet/maui/pull/15193 But then we'll need to retest the above sample app, to see if there are further...

The list of linked PRs above address various memory issues found the in above sample. However, the memory still appears to grow in the sample with dotnet/maui/main at this time....

Yes, this is not fixed until we get these merged: * https://github.com/dotnet/maui/pull/15062 * https://github.com/dotnet/maui/pull/15193 But then we'll need to retest the above sample app, to see if there are further...

@fischberg can you file a new issue with a `.gcdump` file of your app? https://aka.ms/maui-memory-leaks This issue has a better list of what controls should be fixed so far: *...