I'm looking to use an SVG in Kivy, but I'd prefer to do so in a kv file, as opposed to in the py program. However, when I try something such as
Widget:
canvas.before:
Svg:
filename: "mySVGFile.svg"
I get an ``init() takes at least 1 positional argument". How can I use an SVG from the kv file?