I'm trying to use Zebble.Drawing in my UWP project but the project doesn't build with this error: 'Drawing.Line' does not contain a definition for 'Id'. Here's the code for my Zebble page:
<?xml version="1.0"?>
<z-Component z-type="ActionBar" z-base="Page" z-namespace="UI.Pages"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./../.zebble-schema.xml">
<Stack Style.Margin.Top="10" Style.Margin.Left="5">
<Drawing>
<Drawing.Line></Drawing.Line>
</Drawing>
</Stack>
</z-Component>
And here's the line in .zebble-generated.cs file that causes the error:
var __drawing_Line1 = new Drawing.Line { Id = "__drawing_Line1" };
Any help is greatly appreciated.