Max Borrmann
Max Borrmann
@TheXenocide var duration = (uint)(args.AnimationDuration * 1000); In OnKeyboardShow works for me (like in the full code I posted above). What does your code look like?
@TheXenocide Yeah I think I would first try it on a device instead. I think simulator keyboards potentially could behave differently because you can also type on the devices keyboard...
My workaround for now is to add the group headers as items to the list and use a datatemplateselector. Alternatively set a boolean on the first item of each group...
Is there a workaround if you want certain behaviour on certain pages? I call this method sometimes in OnAppearing or OnNavigatedTo, but the behaviour doesn't update.
The marked answer from this thread can still be used in MAUI: [How to Check For Dark Mode in Xamarin.Forms](https://stackoverflow.com/questions/57879523/how-to-check-for-dark-mode-in-xamarin-forms)
I actually have a similar, but kind of opposite problem (using apns, though). Previously I handled taps on my push notifications in AppDelegate ``` public override bool FinishedLaunching(UIApplication app, NSDictionary...
Also I can confirm it is not a problem with `DidReceiveNotificationResponse` inside `CustomUserNotificationCenterDelegate`. It does get triggered when I tap a Push-Notification, but it doesnt seem to have the information...
I figured it out with the help of this [this](https://github.com/xamarin/GoogleApisForiOSComponents/issues/265) that my data was hiding just here! ``` var actionValue = response.Notification.Request.Content.UserInfo.ObjectForKey(new NSString("action")); if(!string.IsNullOrWhiteSpace(actionValue?.Description)) MyPushNotificationHandler(actionValue.Description); ```
@jfversluis I wonder if this is somehow related to [this MAUI issue](https://github.com/dotnet/maui/issues/20246) . I see the same issue for both TapGestures as well as the TouchBehavior and also on iOS.
Dialogs like `Application.Current.MainPage.DisplayActionSheet` also open behind the BottomSheets.