public static void ApplyStyle(this UIButton @this, XPlatLabelStyle style) { if (@this == null || style == null) { return; } @this.ApplyFont(style.Font); @this.ApplyTextColor(style.Color); @this.ApplyTextAlign(style.TextAlign); }