jonmdev
jonmdev
I see this is added to the .NET 8 SR2 milestone and title was changed of post to "Editor causes visible frame lag in resizing parents when it resizes". I...
I have been able to identify that the resize lagging behavior for surrounding elements is more generalized and not specifically just due to Editor. I have created a separate repro...
Wow good catch. 👍
Is there any way to make the TitleBar solid color with just C#? A method was given here for xaml but I don't use any xaml anywhere in my projects....
Holy shit. This was first reported **OVER ONE YEAR AGO**? I found this bug last week and fixed it within 1 hour: https://github.com/dotnet/maui/issues/17886 Perhaps I got lucky as I had...
> > Holy shit. This was first reported **OVER ONE YEAR AGO**? I found this bug last week and fixed it within 1 hour: > > #17886 > > Perhaps...
Basic full screen function can be had quite easily by adding the following for Windows and Android the Program.cs code: ``` #if WINDOWS builder.ConfigureLifecycleEvents(events => { events.AddWindows(lifeCycleBuilder => { lifeCycleBuilder.OnWindowCreated(w...
I see it claimed that one can make iOS full screen by adding the following values to the info.plist file: ``` UIStatusBarHidden UIViewControllerBasedStatusBarAppearance ``` This is claimed here for Xamarin...
Made a new issue here as this seems like a deep problem in MAUI for iOS with no solution on our end unless I am still missing something: https://github.com/dotnet/maui/issues/17767
Thanks @ne0rrmatrix ne0rrmatrix, that does at least accomplish one thing: The status bar at the top text becomes invisible. However, the status bar area (safe zone) is still occupying space...