jakobleck

Results 18 comments of jakobleck

https://stackoverflow.com/questions/63525026/what-triggers-the-would-like-to-find-and-connect-to-devices-on-your-local-netwo#comment119607816_64210041

@RRohitM 0.8.3 has the same import in its pubspec as 0.8.4 (and so has the same problem): dart_webrtc: ^1.0.4

Maybe you can do this with [permission_handler](https://pub.dev/packages/permission_handler) before starting the webrtc call?

Your suggestion does not make for good reading. ``` track.enable = true; //ugly track.enabled = true; //ok track.enable(); //would be ok ```

This is part of your signaling, maybe via a socket connection. If the internet connection is lost, let the socket connection try to reconnect and once it reopens you can...

https://github.com/flutter-webrtc/flutter-webrtc/issues/899

@xunreal75 Do you have any indication that this _deprecation warning_ is related to the crash? I do not think it is. This warning shows up all the time when the...

Agree that this is still an important issue. Because it implements the same WebRTC specifications, functionality can be very much the same in other languages/implementations, thus the doc https://developer.mozilla.org/en-US/docs/Web/API/WebRTC_API can...

Check out https://github.com/jakobleck/flutter_app_badger/commit/57d55389bf42c7853e0243ed60387aae407dbf98 Tested with Flutter 3.10.5 and three different devices/emulators running Android 11, 13 and 14. Example app starts on Android, but badge count update does not work, getting...

According to the [migration guide for buttons](https://docs.flutter.dev/release/breaking-changes/buttons) it is recommended to use `ElevatedButton` as a replacement for `RaisedButton`. ;)