Beispiel #1
0
        public static void UpdateStroke(this ContentPanel nativeView, IBorder border)
        {
            var stroke = border.Stroke;

            if (stroke == null)
            {
                return;
            }

            nativeView.UpdateStroke(stroke);
        }
Beispiel #2
0
        public static void UpdateStroke(this ContentPanel platformView, IBorderStroke border)
        {
            var stroke = border.Stroke;

            if (stroke == null)
            {
                return;
            }

            platformView.UpdateStroke(stroke);
        }