FM1973

Results 53 comments of FM1973

Just for info: what does work is to get the list of categories in a local variable and add a task to this local varaible. Then I set the categories...

Oh man! One should read the docs. Sorry to have wasted your time. Works like a charm now! Thanks!

I got the same problem. I my case I´ve installed .net RC1 as well. But I got the problem when using AppCenter in .net 7 with MAUI 7.0.59.

To me too. Simple Maui Blazor App. No additional packages included.

@borrmann Thanks a lot!! This really works well.

Since I´m using dependency injection and have registered some views as Singleton, I changed the code a little bit. I´ve moved RegisterForKeyboardNotifications to OnAppearing and UnregisterForKeyboardNotifications to OnDisappearing.

@borrmann Where do you call KeyboardAutoManagerScroll.Disconnect();? I´m calling KeyboardAutoManagerScroll.Disconnect() but the page still get´s panned up. I´m changing the root grid view (bottom margin) which works, but there is still...

> @FM1973 > > I call it in OnNavigatedTo: > > ``` > protected async override void OnNavigatedTo(NavigatedToEventArgs args) > { > base.OnNavigatedTo(args); > > #if IOS > Microsoft.Maui.Platform.KeyboardAutoManagerScroll.Disconnect(); >...