flutter_ssh
flutter_ssh copied to clipboard
Linux support
I'm running into this issue when I run this on linux.
[ERROR:flutter/lib/ui/ui_dart_state.cc(166)] Unhandled Exception: MissingPluginException(No implementation found for method connectToHost on channel ssh)
I'm guessing this is an issue with the plugin not being registered, so this might be an upstream error.
This is because the author didn't write implementation for linux platform.
Well can the author write an implementation?
well he can, but I doubt he knows how, and I don't know how either.
If you need ssh on linux now, you can use Process to run command line ssh directly.
well he can, but I doubt he knows how, and I don't know how either.
If you need ssh on linux now, you can use Process to run command line ssh directly.
Could you possibly elaborate a little more on using Process? Would it be in conjunction with this plugin? (Looking to figure out how to get a Flutter app to run some commands and get output via SSH)
Thank you!