-
Notifications
You must be signed in to change notification settings - Fork 982
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems you are trying to reach a Socket.IO server in v2.x with a v3.x client, but they are not compatible #747
Comments
pub.dev doesn't have a 3.x version |
@codesdevs If you use the socket.io client version 1.0.2, that should work |
thank you so much bro it worked. I was on it for more than 4 hrs ;) |
yes it still works |
This version worked for me and i was able to set up the connectionI have set up a Node.js server with Flutter (pubspec.yaml)dependencies:
socket_io_client: ^1.0.2 Flutter (Dart code)import 'package:socket_io_client/socket_io_client.dart' as IO;
class SocketClient {
IO.Socket? socket;
static SocketClient? _instance;
// Private constructor
SocketClient._internal() {
// Initialize and connect to the socket server
socket = IO.io('http://Your Ip address:Port', //ex https://198.256.0.0:3000
IO.OptionBuilder().setTransports(['websocket']) // Enable WebSocket transport
.disableAutoConnect() // Disable auto-connect
.build()
);
socket!.connect();
// Add event listeners
socket!.onConnect((_) {
print('Connected to server');
});
socket!.onDisconnect((_) {
print('Disconnected from server');
});
socket!.onConnectError((error) {
print('Connection error: $error');
});
}
// Singleton pattern
static SocketClient get instance {
_instance ??= SocketClient._internal(); // Lazy initialization
return _instance!;
}
} Make sure the server IP address is correct, and your Flutter app is allowed to access it. |
I'm Android flutter. How do I fix this? I still have problems with 3.x references
The text was updated successfully, but these errors were encountered: