Liam Appelbe
Liam Appelbe
That's definitely what we plan to do, but I can't give you an ETA at the moment.
Hopefully we can abstract away the API differences. It's mainly just a question of prioritization. Since this is considered an experimental package, and we don't know how many users we're...
Thanks for the info. Async compilation is also on our todo list. Sounds like we should implement that first.
Web users won't use wasmer or FFI or have to install rust (they probably won't even need to run the setup script). Dart packages support [conditional importing](https://dart.dev/guides/libraries/create-library-packages#conditionally-importing-and-exporting-library-files), so for web...
I'm still working on properly supporting iOS. I haven't started on web support yet, but that will come next.
`a::a(int32, int32, int32, int32)` is a function import, so you need to bind a Dart function to it in the `WasmInstanceBuilder` (the thing that the `builder()` function returns). When you...
I'm guessing it binds those function imports somewhere in [this file](https://github.com/robot-ux/wallet-core-example/blob/master/public/static/js/wallet-core.js). You need to provide those function imports, like this: ```dart walletCoreWasm = mod.builder() ..addFunction('a', 'a', (int arg1, int arg2,...
Not quite yet. I haven't published the flutter plugin yet, because I haven't added iOS support. I'm working on that now.
I've been working on it from time to time, but it's not my top priority. The main issue is that I'm running into a long series of linker errors. I...
We haven't ported the package to mobile platforms yet, but we definitely plan to. I'm hoping to start working on this in a few weeks, once I finish my current...