04
Nov
2020
SVG images in SwiftUI
Reading time: 1 min
This tutorial shows how to use SVG images in SwiftUI.
First, add the Macaw library to your project. Then, wrap its SVGView
using this simple UIViewRepresentable
wrapper:
import Macaw
struct SVGImage: UIViewRepresentable {
// a binding allows for dynamic updates to the shown image
@B...