shekohex / flutterust

Flutter + Rust = :heart:

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Callback example?

ivnsch opened this issue · comments

Nice project! Sometimes (not necessarily for multithreading), it makes sense for the app to register a callback in Rust. E.g. I'm using this in native apps to send log messages to be displayed in a logs screen in the app. Could you add an example for this?

Yes, we are using the same thing in our applications here in Frustylogger

It is a lib + demo, both in Rust and Flutter app, all powered by cargo-make :)

PS: it does not work with multithreading, as you cannot call a native dart function from other threads.