Replies: 2 comments 2 replies
-
Personally I integrate my rust code with a flutter plugin, and use that plugin in my app. This bridge works perfectly fine for that. Just the tutorial does not demonstrate it currently. Could you please provide more details and make it an issue? /cc @Desdaemon who wrote the wonderful tutorial part. |
Beta Was this translation helpful? Give feedback.
0 replies
-
@fzyzcjy Thanks for the Super Fast Response |
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
-
I've been trying to use flutter_rust_bridge for a plugin but it seems this project only supports integration with flutter application. Everything works if used inside a Flutter Application directly instead of a plugin abstraction
The
flutter run
command fails inside<plugin-folder>/example
withFailed to load dynamic library 'lib<crate_name>.so'
ExceptionThere's
lib<plugin-name>_plugin.so
but nolib<crate_name>.so
insideexample/build/linux/x64/debug/bundle/lib
Please help me with these issue. How can I bundle/link/import/load Rust's compiled shared library used inside the plugin into the application bundle directory?
Beta Was this translation helpful? Give feedback.
All reactions