— If you don’t know what a converter is, I recommend you reading this article first. Have you ever wondered how to pass multiple parameters to a converter, or how to create properties in a converter to change the value based on them? If you want to know how to achieve it then keep reading […]
Simplifying Bindable Properties with Type Converters in Xamarin Forms
A Type Converter allows you to convert values from a type to a different type, this is helpful when creating bindable properties in Xamarin Forms because it saves you a lot of time and validation code. In this article, I’m going to show you a few use cases where you can use it. NOTE: If […]
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 […]
Understanding Converters in Xamarin Forms
In a previous article we talked about Triggers, in which basically we were using it for use cases when we wanted to change a control value based on a property value in the model. So instead of writing the code in our model, we do in our XAML. Converters use a similar concept, just instead […]