public static void Configure(this UIView view, FigmaRectangleVector child)
        {
            Configure(view, (FigmaVectorEntity)child);

            view.Layer.CornerRadius = child.cornerRadius;
        }
Example #2
0
 public static void Configure(this StringBuilder builder, string name, FigmaRectangleVector child)
 {
     Configure(builder, name, (FigmaVectorEntity)child);
     //TODO: NOT IMPLEMENTED
     //builder.AppendLine(string.Format("{0}.Layer.CornerRadius = {1};", name, child.cornerRadius.ToDesignerString ()));
 }
Example #3
0
        public static void Configure(this TransparentControl view, FigmaRectangleVector child)
        {
            Configure(view, (FigmaVectorEntity)child);

            //view.Layer.CornerRadius = child.cornerRadius;
        }
Example #4
0
 public static void Configure(this Widget view, FigmaRectangleVector child)
 {
     Configure(view, (FigmaVectorEntity)child);
     //TODO: NOT IMPLEMENTED
     //view.Layer.CornerRadius = child.cornerRadius;
 }
Example #5
0
        public static void Configure(this FrameworkElement view, FigmaRectangleVector child)
        {
            Configure(view, (FigmaVectorEntity)child);

            //view.Layer.CornerRadius = child.cornerRadius;
        }