public static void UpdateStroke(this ContentPanel nativeView, IBorder border) { var stroke = border.Stroke; if (stroke == null) { return; } nativeView.UpdateStroke(stroke); }
public static void UpdateStroke(this ContentPanel platformView, IBorderStroke border) { var stroke = border.Stroke; if (stroke == null) { return; } platformView.UpdateStroke(stroke); }