You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
yash-chudasama d6573bd9dd changed directory name for flutter webrtc app 2 years ago
..
android changed directory name for flutter webrtc app 2 years ago
ios changed directory name for flutter webrtc app 2 years ago
lib changed directory name for flutter webrtc app 2 years ago
linux changed directory name for flutter webrtc app 2 years ago
macos changed directory name for flutter webrtc app 2 years ago
test changed directory name for flutter webrtc app 2 years ago
web changed directory name for flutter webrtc app 2 years ago
windows changed directory name for flutter webrtc app 2 years ago
.gitignore changed directory name for flutter webrtc app 2 years ago
.metadata changed directory name for flutter webrtc app 2 years ago
README.md changed directory name for flutter webrtc app 2 years ago
analysis_options.yaml changed directory name for flutter webrtc app 2 years ago
pubspec.lock changed directory name for flutter webrtc app 2 years ago
pubspec.yaml changed directory name for flutter webrtc app 2 years ago

README.md

WebRTC Flutter App

Clone Repository

Clone the repository to your local environment.

git clone https://github.com/videosdk-live/webrtc.git

Server Setup

Step 1: Go to webrtc-signalling-server folder


cd webrtc-signalling-server

Step 2: Install Dependency


npm install

Step 3: Run the project


npm run start

Client Setup

Step 1: Go to flutter_webrtc_app folder


cd flutter_webrtc_app

Step 2: Get dependencies

flutter pub get

Step 3: Update Signalling Server URL

in main.dart file, update the websocket url.

// signalling server url
final String websocketUrl = "SIGNALLING_SERVER_URL";

Step 4: Run the sample app

Bingo, it's time to push the launch button.

flutter run