3

I was wondering if it is possible to make a video call between a flutter web app and flutter mobile application. In pub dev's agora_rtc_engine 4.0.6, it only says there, "Android and IOS supported". So I guess web is not yet supported?

If not, is there any alternative solution that I could use for my project to achieve this feature?

emmy-chwan
  • 149
  • 1
  • 12

3 Answers3

5

Agora Flutter SDK provides web support but it is currently available as a prerelease. To use it in your application you can use the v4.1.0-alpha.2

  • Thanks for the info! Anyway, do u have any idea when they are going to officially release their web support? – emmy-chwan Sep 08 '21 at 07:59
4

Thank meherdeep thakur for his answer.

Based on this, I implemented the web version of my Flutter project.

  1. Change the version of agora_rtc_engine in pubspec.yaml:

    agora_rtc_engine: ^4.1.0-alpha.2
    
  2. Download the AgoraRtcWrapper.bundle.js file: Raw Link

  3. Import the AgoraRtcWrapper.bundle.js file into the project.

    Project Root/web/AgoraRtcWrapper.bundle.js

  4. Add the file to Project Root/web/index.html

    <script src="AgoraRtcWrapper.bundle.js" type="application/javascript"></script>
    
jqgsninimo
  • 6,562
  • 1
  • 36
  • 30
-1

Yes Defiantly add agora video call SDK with flutter web and flutter app. for this you can read documentation: visit https://docs.agora.io/en/Video/start_call_flutter?platform=Flutter

and This Plugin will all you to use Agora video call functionality in your application: visit https://pub.dev/packages/agora_rtc_engine