Leo Decking

Results 1 issues of Leo Decking

Could you implement the possibility to return something from c# to javascript? Example: C#: ```cs WebView.AddLocalCallback("square", (str) => { int i = int.Parse(str); return i*i; }); ``` JavaScript: ```js var...