Morphi – Μορφ
  • August 7, 2025

Morphi provides some additional shapes for SwiftUI.

Screen shot

  •  Triangle
  •  Parallelogram(topLeftAngle)
  •  Polygon(sides)
  •  RoundedPolygon(sides, cornerRadius)
  •  Heart
  •  Moon(angle)
  •  PlusSign(width)
  •  Star(points)
  •  Wave(isUp, width, offset)
  •  SuperEllipse(n)
  •  Drop
  •  Ring(radius) (to use with a FillStyle with eoFill equal to true)
  •  Gear(radius, cogs) (to use with a FillStyle with eoFill equal to true)

Examples


Create a shape view

 

Like any other shapes just initialize it.

Heart().fill(Color.red).frame(width: 100, height: 100)

Heart

Mask an existing view

aView.clipShape(Drop())
// or using static member
aView.clipShape(.drop)

You can even do it on another shape.

Polygon(sides: 6).fill(Color.red).clipShape(.drop)

PolygonDrop

UIKit


 

For UIKit version with UIBezierPath see IBAnimatable framework

GitHub


View Github

YOU MIGHT ALSO LIKE...
MijickPopups Hero

  Popups Alerts Resizable Sheets Banners

SwiftUI Tooltip

This package provides you with an easy way to show tooltips over any SwiftUI view, since Apple does not provide ...

SimpleToast for SwiftUI

SimpleToast is a simple, lightweight, flexible and easy to use library to show toasts / popup notifications inside iOS or ...

SSToastMessage

Create Toast Views with Minimal Effort in SwiftUI Using SSToastMessage. SSToastMessage enables you to effortlessly add toast notifications, alerts, and ...

ToastUI

A simple way to show toast in SwiftUI   Getting Started • Documentation • Change Log