[BrowserWasm] + [SkiaRenderer] : What happened to WebAssemblyRuntime? #21084
-
Migrating code to UNO 6 (from UNO 5) and noticed that WebAssemblyRuntime.InvokeJS is not available when SkiaRenderer is used. I'm assuming that intentional? Aside from using the JSImportAttribute, are there other ways to work around this? |
Beta Was this translation helpful? Give feedback.
Answered by
jeromelaban
Jul 18, 2025
Replies: 1 comment 2 replies
-
@Takoooooo do you maybe have some wasm specific knowledge to help here? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
eval
should not be used anymore, as it can cause security issues, and it's best to migrate toJSImport
. You can still create yours if you need to, usingJSImport
and evaluating a string manually.