Description
Hi everyone
I've been trying for a long time to get a webview to work on flutter-pi with no success partly due to lack of plugins that support this feature on Linux and partly because they don't work on flutter-pi.
Now I want to focus on the second aspect: I found a plugin called desktop webview window that works on pure Linux, opening the web page on a new window, and I would like it to open fullscreen above the existing one with the possibility of closing it later. However this plugin on flutter-pi doesn't work because it can't find the plugin (although I added it on pubspec)
This MissingPluginException problem on flutter-pi happens to me very often. In release mode it also happened to me with shared_preferences and I had to do a SharedPreferencesLinux.registerWith () to make it work, but with this plugin it didn't work.
Url_launcher also has the same problem, but I don't have a browser installed and maybe that's why. Speaking of browsers, I don't know if I could use a browser as an alternative to webview since it needs X and apparently flutter-pi is not compatible with X.
What suggestions do you give me to get out of this tangled situation?
Basically, I need to be able to open a link from the flutter application, possibly with a webview or alternatively in the browser if you really can't with the webview.
Thanks