I wanted to ask you about the desktop part of the technology. If the documentation is about how ordinary developers can inject native code into a desktop application (WPF, Mac, Linux) like buinding or as a custom plugin or something similar Best regards, Vadim
-
First check the docs on plugin development flutter.dev/docs/development/packages-and-plugins/… flutter.dev/desktop#plugin-support reading the code for the path_provider or url_launcher desktop plugins can be a good startMDemetrio– MDemetrio2020-07-20 05:40:10 +00:00Commented Jul 20, 2020 at 5:40
Add a comment
|
1 Answer
You have all the same options for platform code on desktop that you do on mobile:
- Adding it directly to the native runner app that's created by
flutter create - Writing a plugin
- FFI