Skip to content

Instantly share code, notes, and snippets.

@iosdevie
Created May 29, 2021 20:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iosdevie/bbf5f71e12543a989edab4830285509e to your computer and use it in GitHub Desktop.
Save iosdevie/bbf5f71e12543a989edab4830285509e to your computer and use it in GitHub Desktop.
var body: some View {
Path { path in
path.move(to: CGPoint(x: 100, y: 100))
path.addLine(to: CGPoint(x: 100, y: 300))
path.addLine(to: CGPoint(x: 300, y: 300))
}.fill(Color.green)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment