public static void UpdateStrokeDashPattern(this ContentPanel nativeView, IBorder border) { var strokeDashPattern = border.StrokeDashPattern; if (strokeDashPattern == null) { return; } nativeView.UpdateStrokeDashPattern(strokeDashPattern); }
public static void UpdateStrokeDashPattern(this ContentPanel platformView, IBorderStroke border) { var strokeDashPattern = border.StrokeDashPattern; if (strokeDashPattern == null) { return; } platformView.UpdateStrokeDashPattern(strokeDashPattern); }