Provides a special Calligraphy binding for MvvmCross.
See the blog post: http://smstuebe.de/2017/02/12/mvvmcross-calligraphy/
Install-Package MvvmCross.Calligraphy
and modify your Setup.cs
public class Setup : MvxAndroidSetup
{
protected override MvxAndroidBindingBuilder CreateBindingBuilder()
{
return new CalligraphyMvxAndroidBindingBuilder();
}
}