public static void InitializeFrom(this Rectangle nativeControl, Abstractions.RoundedBoxView formsControl) { if (nativeControl == null || formsControl == null) { return; } nativeControl.UpdateCornerRadius(formsControl.CornerRadius); nativeControl.UpdateBackgroundColor(formsControl.BackgroundColor); nativeControl.UpdateBorderThickness(formsControl.BorderThickness, formsControl.HeightRequest, formsControl.WidthRequest); }