Implementing value converters with IValueConverter for Xamarin.Forms

Value Converters Featured Image

When using Xamarin.Forms and the MVVM pattern within your app, at some point you are going to run into a problem. The problem is that you want to bind to a value that is not the right type. For example, you want to bind some enum value to the text color. This can easily be … Read more

iOS UITableViewCellStyle in Xamarin.Forms

UITableViewCellStyleHeader Featured Image

In the past week, a question came across on StackOverflow for which I created a sample project. The question was: how to make the detail text of a TextCell appear on the right? I started to answer the question, as I do a lot, and quickly came across the UITableViewCellStyle in iOS. I thought it would … Read more