Skip to content

Latest commit

 

History

History
51 lines (31 loc) · 1.47 KB

README.md

File metadata and controls

51 lines (31 loc) · 1.47 KB

poc_live_events

POC app combining agora and signalr examples for live events

Created using flutter 1.22.6

SignalR server code available in ./ChatServer


Setup:

Agora:

Open the settings.dart file and add the app ID (and token if needed).

  const APP_ID = "<agora_app_id>";
  const Token = ""; //leave empty for test env

SignalR:

Run the server solution in VisualStudio ChatServer/SignalRChatServer.sln

Open the main.dart file and change the server url to your local IP

  const kChatServerUrl = "http://192.168.0.4:5000";

Install dependencies:

Run the packages get command in your project directory:

  flutter pub get