socket.io-client-dart
socket.io-client-dart copied to clipboard
socket.io-client-dart: Dartlang port of socket.io-client https://github.com/socketio/socket.io-client
Hello guys, I'm facing a issue with socket client. I'm able to connect and use It locally but unfortunately when I uploaded to GCP or AWS things changed as the...
I am trying to use this package, but the code does not seem to do anything - I don't get any console.logs, no errors, ... it seems as if the...
I am having an issue while connecting socket.io to my test server, It works for local but not connecting to the server, I have a server on AWS elasticbeanstalk. Working...
I am rewriting the existing kotlin app in flutter to support cross-platform. Socket url is working great in kotlin, but it throws an error while using it in flutter. Connection...
Hello, I am using socket.io and when user logout I call ``` void logout() { debugPrint("will logout socket"); chatSocket?.clearListeners(); chatSocket?.dispose(); } ``` I use websocketService class and use it with...
Hi, could you help me with the next issue, I have the following code in my server and client: ``` //server - javascript this.io.of('/chat').use(isAuth).on('connection', (socket) => SocketsChat(socket, this.io)); //isAuth -...
Hi, I am trying to send data to a hardware device which is connected via Wifi. I have device's ip address and port number and used following code to send....
``` ElevatedButton( child: const Text('upload image'), onPressed: () async { final XFile? image = await _picker.pickImage(source: ImageSource.gallery); setState(() { _imagePath = image?.path; _imageFile = image; }); }, ), ElevatedButton( child:...
I am uploading a big file to aws s3 storage using sockets. In the meantime i want the user to show a progress bar of the uploaded data . >...
hi i have problem in domain https cloudflare If my site domain is http, the socket will be connected But if the domain is https, the socket will not be...