Closed sgsm74 closed 11 months ago
Hey guys I have an issue with connecting to websocket in flutter web app, it works fine on android and ios this is a sample of my code
if (kIsWeb) { channelChat = WebSocketChannel.connect(Uri.parse('ws://example.com:1000')); } else { channelChat = IOWebSocketChannel.connect('ws://example.com:1000'); }
simply done by changing ws to wss
Hey guys I have an issue with connecting to websocket in flutter web app, it works fine on android and ios this is a sample of my code