Useful converters in Xamarin Forms

When developing Xamarin Forms applications there are some converters that we use very often. In the following article will do a compilation of the most useful converters I have used, so that you can easily use them in your projects. (In case you are not familiar with converters you can check this article). Here the […]

Continue Reading

Prism > 7.0 Recap

Almost two years ago I wrote an article about how to update your project to Prism 7.0. Since then there have been a lot of changes introduced in Prism, so in this article, I’ll be doing a recap of versions 7.1 and 7.2. Version 7.1 Using INavigationParameters instead of NavigationParameters If you updated your project […]

Continue Reading

XAML Markup extension in Xamarin Forms

A XAML markup extension is a class that implements the IMarkupExtension or IMarkupExtension<T>. Basically, it allows you to set element properties referenced indirectly from a different source. In Xamarin Forms there are many markup extensions pre-created (x:Static, x:Reference, x:Null, x:Type, etc). In this article, I will focus on two very popular markup extensions which are: […]

Continue Reading