Skip to main content
The Daily Client SDK for Flutter is a Dart package built on WebRTC. It handles media negotiation, network traversal, and participant management so you can focus on building your UI.

Demo app

A complete working example on GitHub

API reference

Full Dart API docs on pub.dev

Getting started

Add the package to your pubspec.yaml:
Then join a call and display participant video:
Render a participant’s video using VideoView:

API structure

The SDK is organized around the tasks involved in building a call. For each task you get methods to update state, properties to get current state, and events via CallClient.events to react to changes.

Call lifecycle

join(), leave(), callState, CallStateUpdated

Participants

participants(), ParticipantJoined, ParticipantUpdated, ParticipantLeft

Media inputs

updateInputs(), setInputsEnabled(), InputsUpdated

Publishing

updatePublishing(), PublishingUpdated

Subscriptions

updateSubscriptions(), updateSubscriptionProfiles(), SubscriptionsUpdated

Active speaker

activeSpeaker, ActiveSpeakerChanged

Requirements

  • Flutter 3.0 or later
  • iOS deployment target >= 13.0
  • Android minSdkVersion >= 23