fuzzybinary / dart_shared_library

An attempt to package Dart into a usable shared library (.dll / .so)
Other
77 stars 10 forks source link

Not an issue just questions :) #15

Closed codethinki closed 3 months ago

codethinki commented 3 months ago

Is it possible to use this lib to export the flutter framebuffer? (if you know if you dont know then ig i'll have to find out myself) How much delay do u have with calling the vm? Or does that depend entirely on the dart code?

thx for answers :)

fuzzybinary commented 3 months ago

No. Exporting the Flutter framebuffer would require customization of Flutter, not Dart.

I'm also not sure what you mean by "delay". The calls to Dart_Invoke are synchronous, so they'll take as long as the Dart code takes to execute.