flutter-webrtc / flutter-webrtc-demo

Demo for flutter-webrtc
MIT License
1.15k stars 417 forks source link

Error: The non-abstract class 'RTCVideoRenderer' ... #195

Closed srlopez closed 1 year ago

srlopez commented 1 year ago

Hello, Trying to launch the demo, on Windows 10, with Flutter 3.3 I get the following error message.

Error: The non-abstract class 'RTCVideoRenderer' is missing implementations for these members:
 -VideoRenderer.onFirstFrameRendered

I understand that the application is made in another version of Flutter. Have you thought about upgrading the demo to 3.3?

Thank you

chitraarasu commented 1 year ago

I am also facing same issue

timmy-gzw commented 1 year ago

I am also facing same issue

After upgrading flutter_webrtc solved the problem.

srlopez commented 1 year ago

Thanks, You are right. No issues after upgrade. But I dont know how to setup the demo. After start the server in my machine

go run cmd\server\main.go
2022-09-19T11:17:37+02:00 INF Flutter WebRTC Server listening on: 0.0.0.0:8086

Then start the demo width flutter run -d windows , and setup the server localhost:8086 ... dont know how to continue.

Thanks

timmy-gzw commented 1 year ago

Thanks, You are right. No issues after upgrade. But I dont know how to setup the demo. After start the server in my machine

go run cmd\server\main.go
2022-09-19T11:17:37+02:00 INF Flutter WebRTC Server listening on: 0.0.0.0:8086

Then start the demo width flutter run -d windows , and setup the server localhost:8086 ... dont know how to continue.

Thanks

Fill in 127.0.0.1 and fill in the ip address in another device.

srlopez commented 1 year ago

Thanks.