Flutter-Smartfox server-client - flutter

I need to connect the smartfoxserver by .dart package.
Do we have library to connect the smartfoxserver, which should support IOS, Android, Windows and web.
But we have some packages for socket.io but not available for smartfoxserver.
Can you provide me the suggestion.

Related

Flutter web is there any solution to connecting to xmpp jabber

I been trying for 3 days to connect to XMPP server through web sockets on flutter web.
Tried the xmpp_stone package which uses dart.io so can't use it for web and tried the web_support version of that again connection kept getting failed.
I tried xmpp_dart package, strophe, and dart:html WebSocket no luck.
it would be helpful if I get some suggestions or some solution to this

Is there any ways to connect flutter app to odoo 13?

How to connect flutter app to odoo 13? Is there any ways to connect flutter app to odoo 13?
You can use XMLRPC or JSONRPC as External API of Odoo to connect your Odoo from any services. For more details about this you can follow the official documentation. Odoo RPC Client Library in dart is also available for use. Once you have the basic idea how RPC External API works, you can combine this two to achieve what you need.

Flutter desktop support for reading serial port input

I what to build flutter desktop application for linux ubuntu. The application needs to read from the serial port of the desktop. The use case is I will be connecting a weight machine to my desktop using RS232. Are there any API available in flutter that can read the weight and show it in the application.
As far as I know, it's only available for IOS and Android.usb_serial: ^0.2.4
More details would be helpful if you provide what exactly you want to read for alternative solutions.
Edit:
check out
flutter_libserialport: ^0.2.0 https://pub.dev/packages/flutter_libserialport/example
libserialport: ^0.2.0+2 https://pub.dev/packages/libserialport

Flutter Socket-Io is not connecting to server?

I'm new to Flutter and I'm trying to create simple chat chat app with Nodejs and Flutter. I'm using Socketio for real time communication.
When I try react client to connect my server, it is working but Flutter is not working. I used this package https://pub.dev/packages/flutter_socket_io .
I had same issue before. It is version issue. According to developer of that package, it is working with socket io version 2 so you should use older version of socket io on server-side.
You can see Why my Flutter app does not connect to my local nodejs server?

Plans for Socket api for dart in chrome apps

Is there any plan to allow dart programs to use sockets in chrome, like chrome packaged apps are allowed to use the chrome.socket api set?
There is a package which implements the chrome* APIs in Dart at http://pub.dartlang.org/packages/chrome.
Sockets are supported by latest releases of Dart: see Socket class in dart:io library.
They can only be used in command line applications (e.g. on server-side). Sockets are currently not supported by Web browsers (you must use WebSockets which are not the same).