Max Borrmann

Results 57 comments of Max Borrmann

@tomShoutTheSecond In .NET 8 the default behaviour for iOS is now basically to Pan the page, IF the TextField (e.g. Editor or Entry) is below the Keyboard. However, this does...

@FM1973 I call it in OnNavigatedTo: ``` protected async override void OnNavigatedTo(NavigatedToEventArgs args) { base.OnNavigatedTo(args); #if IOS Microsoft.Maui.Platform.KeyboardAutoManagerScroll.Disconnect(); #endif ... ``` and reconnect in OnNavigatedFrom as I only want this...

@hartez gotcha! However, shouldn't the Width of the HorizontalStackLayout be limited to the Width of its parent, e.g. if we have the HorizontalStackLayout inside a Grid like you suggested?

@rolfbjarne what sort of crash report? I am not using AppCenter (yet).

Thanks @timdinhdotcom . It seems like this was the original issue. I was also able to use the linker when I create a build for a real device instead the...

I can confirm what @PureWeen said. Line 79 is what my App caused to crash too. Maybe it's possible to store those colors elsewhere like he said or at least...

`(scrollView as IView).InvalidateMeasure();` was posted as a workaround in issue #8820

attached video shows a Shell TitleView on an iOS device while navigating between Tabs using .NET 7. Sometimes the Title doesn't appear at all, sometimes it moves up, approximately half...

Thank you, works like a charm! Just had to use my inherited class from Shell, in my case `AppShell` in MauiProgram.cs Also I would suggest to set the Backgroundcolor using...