I need to support SVG rendering in my application and currently I'm adopting the approach of pasting the code to Quassum/svg-to-swiftui website (see here) and making a View out of it.
Even though this is somewhat effective, it is not ideal since I'd like to be able to persist a reference to the svg resource's bundle URL and display it.
I will need to update the stroke possibly with high frequency (on pinch gesture) but don't need a fill capability.
I checked out SVGView from Exyte and it'd be perfect if only it allowed to stroke paths from the SVG. That seems to be the only one out there that's easy to find at least.
Any suggestions (I would like to avoid resorting to UIKit and UIViewRepresentable since in my experience it will lead to animations glitches more often than not)?