We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Vector2
1 parent 5b882d0 commit 79d5a4aCopy full SHA for 79d5a4a
src/SourceGenerators/Uno.UI.SourceGenerators/XamlGenerator/XamlFileGenerator.cs
@@ -4918,6 +4918,9 @@ string Inner()
4918
case "Windows.Foundation.Point":
4919
return "new Windows.Foundation.Point(" + SplitAndJoin(memberValue) + ")";
4920
4921
+ case "System.Numerics.Vector2":
4922
+ return "new global::System.Numerics.Vector2(" + memberValue + ")";
4923
+
4924
case "System.Numerics.Vector3":
4925
return "new global::System.Numerics.Vector3(" + memberValue + ")";
4926
0 commit comments