Ejemplo n.º 1
0
 public static void ApplyFont(this UIStringAttributes @this, XPlatFont font)
 {
     if (@this == null || font == null)
     {
         return;
     }
     @this.Font = font.ToNative();
 }
Ejemplo n.º 2
0
 public static void ApplyFont(this UIButton @this, XPlatFont font)
 {
     if (@this == null || font == null)
     {
         return;
     }
     @this.Font = font.ToNative();
 }