Ejemplo n.º 1
0
        public static void UpdateStrokeDashPattern(this ContentPanel nativeView, IBorder border)
        {
            var strokeDashPattern = border.StrokeDashPattern;

            if (strokeDashPattern == null)
            {
                return;
            }

            nativeView.UpdateStrokeDashPattern(strokeDashPattern);
        }
Ejemplo n.º 2
0
        public static void UpdateStrokeDashPattern(this ContentPanel platformView, IBorderStroke border)
        {
            var strokeDashPattern = border.StrokeDashPattern;

            if (strokeDashPattern == null)
            {
                return;
            }

            platformView.UpdateStrokeDashPattern(strokeDashPattern);
        }