Dmitrii Matyunin
Dmitrii Matyunin
Is it really stale?)
hi @sagar1garg , as far as I know mobile OS (android & iOS) closes the socket connection itself when app is in the background, so you can not rely on...
Hi @imijanur , have you set up ping-pong messages between server and client? Sometimes I got the same problem with hung status from platform webSocket (the one that DART provides...
Also for custom ping/pong messages you can use this example: ``` import 'package:websocket_universal/websocket_universal.dart'; /// Example for custom Ping/Pong messages /// IMessageProcessor that sends to and /// receives simple [String] text...
closed to no activity
This one helped me: (building with no-optimization flag). But you may try other flags as well flutter build web --web-renderer canvaskit --profile --dart-define=Dart2jsOptimization=O0
> > This one helped me: (building with no-optimization flag). But you may try other flags as well flutter build web --web-renderer canvaskit --profile --dart-define=Dart2jsOptimization=O0 > > not working even...
Hm, solved it with Navigator.pushReplacement. But still a question: why it does not work with my example? (Just to learn a little bit more about how engine works)
@alnitak thanks you for the reply. I guess I can load file into memory (by reading it from assets) and create 2 Soloud instances with same in-memory file (list of...
@alnitak to be honest this is not what I was meaning. So I was suggesting following: 1) use one Soloud instance. I didn't mean to create another one 2) Read...