Ravinder Jangra
Ravinder Jangra
Did you find any solution yet? @LeoDecking , @Jacko1394
Thanks, @Jacko1394. I'll try using this and it'll be great if you can share other references as well (if you have something in mind).
@Nikdm46 you can set that in your appdelegate.
``` if (UIDevice.CurrentDevice.CheckSystemVersion(8, 0)) { var pushSettings = UIUserNotificationSettings.GetSettingsForTypes( UIUserNotificationType.Alert | UIUserNotificationType.Badge | UIUserNotificationType.Sound, new NSSet()); UIApplication.SharedApplication.RegisterUserNotificationSettings(pushSettings); UIApplication.SharedApplication.RegisterForRemoteNotifications(); } else { UIRemoteNotificationType notificationTypes = UIRemoteNotificationType.Alert | UIRemoteNotificationType.Badge | UIRemoteNotificationType.Sound; UIApplication.SharedApplication.RegisterForRemoteNotificationTypes(notificationTypes);...
I was thinking to implement this. Should I just add a bool property (example: `SetTabLayoutGravityToFill` ) in `Shell` and `ShellApprearance` and update native Android TabLayout in `ShellTabLayoutAppearanceTracker` or should this...
Hey @PureWeen I agree and this seems a better way to provide them more options to the devs.
Any update on this?