socket.io-client-dart icon indicating copy to clipboard operation
socket.io-client-dart copied to clipboard

socket.io-client-dart: Dartlang port of socket.io-client https://github.com/socketio/socket.io-client

Results 158 socket.io-client-dart issues
Sort by recently updated
recently updated
newest added

When I try connecting my flutter app, I get the following error: > _TypeError (type 'Null' is not a subtype of type 'int') Here's my code: ```dart IO.Socket? _socket; _socket...

I use same socket.io in react native I dont get any ping timeout error. But in flutter and this library always take pingtimeout error so this is not about my...

I have two emulated devices, the first one can connect to my server successfully, but the second one no. I'm trying with two emulators, and with one emulator and my...

Flutter: socket = IO.io('http://x.x.x:4047',OptionBuilder().setTransports(['websocket']).disableAutoConnect().build()); socket!.on("connect", (data) => print("connect")); socket!.on("disconnect", (data) => print("disconnect")); socket!.on("connect_error", (data) => print("connect_error: $data")); socket!.on("connect_timeout", (data) => print("connect_timeout: $data")); socket!.on("connecting", (data) => print("connecting: $data")); socket!.on("error", (data) =>...

Hi, I'm currently using this plugin to connect to my netty-socket io server which hosted on an android tablet. When I try to connect, it stuck at connecting. ![Capture1](https://user-images.githubusercontent.com/19371767/112247357-1c6c3e80-8c8f-11eb-95cb-cf6ac15b2c5e.PNG) but...

question

How can I keep the socket open when the app is running in the background?

question

Please note that I want to calculate the average time spent per user. Some flutter developers from different regions suggested to use Firebase and sockets. How can your package help...

question

emitWithAck callback function pending forever if no response from server is there time out callback support? or extral arg for handle errors ``` Future emitChangeMessageStatus({@required String statuses}) async { var...

It's not working for background. When closing, socket is disconnecting. For push notification do you have solition with this package ?

1. I just wanted to confirm that besides the Server... the **dart client** code will run in Chrome via Flutters beta version, right? AND... 2. In the Js version... I...

question