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

Transparent Navigation Bar in Xamarin Forms

In this article, I’m going to show you how to make the navigation bar transparent in Xamarin Forms. Let’s do it Step by Step 1-Create a class that extends from NavigationPage 2-We use an iOS platform specific to specify bar is translucent. Make sure to set the color BackgroundColor to Transparent and set the property NavigationPage.IsNavigationBarTranslucent=“True” on […]

Continue Reading