So I am trying to get an SVG image to show in SwiftUI however the documentation to the plugin Macaw is not written well - according to the GitHub.
So how can I the following code to work?
First I import this after pod install:
import Macaw
then I add this:
SVGImage(svgName: "location")
.frame(width: 550, height: 550)
However I get:
Cannot find 'SVGImage' in scope
I have also installed SVGKit
, I am trying to get it to work with that.