ivink

Results 12 comments of ivink

Hi, Is there a way to add a custom deserializer JSON.parse() ? in there I can add a Revive function to convert the date string to a date? This is...

After deleting the bin/obj of all projects _and_ adding the Build Nuget to every project _and_ targetted iOS 9 in the info.plist it worked for me. Note: I had to...

in iOS add this to your AppDelegate.cs public async override void ReceivedLocalNotification(UIApplication application, UILocalNotification notification) { }

In iOS just do this: ` public override void ReceivedLocalNotification(UIApplication application, UILocalNotification notification) { string NotificationKey = "LocalNotificationKey"; var c = notification.UserInfo[NotificationKey]; foreach (var x in notification.UserInfo.Keys) { var t...

I can confirm on our large app with tens of thousands of users that the **CustomShellRenderer** from @adam-russell works in iOS 16

Try this: https://ianvink.wordpress.com/2019/01/24/fontawsome-pro-in-xamarin-forms-apps/

This has started to happen as of the latest Visual Studio Version 17.7.5 Workaround as @Kebechet said, disable exceptions in the Exceptions Settings tab. Then it works

Behaviours on TabControl would be nice. I use the popular EventToCommand behavour tool. Adding that to a TabControl causes XAML compile errors. https://developer.xamarin.com/guides/xamarin-forms/application-fundamentals/behaviors/reusable/event-to-command-behavior/

We have a huge app with about 900 directives from this project. Mostly these directives: - fxLayout - fxLayoutGap - fxLayoutAlign - fxFlex - fxFlexFill - fxHide - fxShow We...