Ali

Results 33 comments of Ali
trafficstars

ok so this is my code ``` @override Future didChangeAppLifecycleState(AppLifecycleState state) async { super.didChangeAppLifecycleState(state); if (state == AppLifecycleState.inactive || state == AppLifecycleState.detached) { print('inactive'); _signalR.stop(); _signalR1.stop(); return; } if(state ==...

After a couple of hours looking for the problem I found sth interesting The problem with the above answer is that Im using to separate `signalr`s in my application, and...