cometchat-flutter-v6-calls
SkillMonitoring & opsAdd voice & video calling to a Flutter app with the CometChat v6 UI Kit — turn calling on in settings, wire the native config and the root navigatorKey (the kit presents incoming/outgoing call screens itself), and add call-log surfaces. Triggers: 'add voice and video calls in flutter', 'add calling
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the cometchat-flutter-v6-calls skill
What this skill tells your AI
The instructions your AI receives, as published by cometchat/cometchat-skills in skills/cometchat-flutter-v6-calls/SKILL.md and read by ahel’s review.
Purpose
Production-grade voice + video calling for Flutter UIKit v6 (stable, Bloc-based). Loaded by cometchat-calls when framework === "flutter" and flutter_version === "v6". Operates in two modes:
- Standalone — calls is the product. Chat SDK + Calls SDK without the v6 UI Kit (rare today, since the UI Kit ships calling bundled). Custom call screens on the SDKs.
- Additive — calls layered onto an existing v6 chat integration. The v6 UI Kit ships call widgets in the same package (
cometchat_chat_uikit) — no extra dependency. The skill enables calling onUIKitSettings, callsCometChatUIKitCalls.init()in the chat-init success callback, mounts the global incoming-call overlay at app root.
Read these other skills first:
cometchat-calls— dispatcher (modes, hard rules, anti-patterns)cometchat-flutter-v6-core— UIKitSettings, init/login order (CHAT_INIT_BEFORE_CALLS_INIT is THE rule)cometchat-flutter-v6-events— Bloc event streams + listener registration
V6 vs V5 difference (critical for migration):
- V6 — single
cometchat_chat_uikitpackage (calls bundled in) - V5 —
cometchat_chat_uikit+cometchat_calls_uikit(separate) - V6 uses Bloc; V5 uses GetX
- V6
CometChatUIKitCalls.init(appId, region)must run AFTERCometChatUIKit.init()succeeds; V5 hides this viaCometChatCallingExtension
Ground truth:
- SDK source — installed
cometchat_chat_uikit@6.0.1artifacts under~/.pub-cache/ - Sample app —
calls-sdk-flutter-5/sample-apps/(V5 sample; V6 sample app may not exist yet — verify before citing) - Public docs — https://www.cometchat.com/docs/calls/flutter/overview (note: V6 docs may still reference V5 module split)
1. The seven hard rules — Flutter v6 specialization
1.0 Calls SDK login — handled automatically when enableCalls: true (ENG-35699)
Single source of truth, verified against installed
cometchat_chat_uikit-6.0.1source on 2026-06-01: when you set..enableCalls = trueonUIKitSettingsBuilderAND useCometChatUIKit.init/login(i.e. the V6 UIKit shape, the recommended path), the kit'sCallEventServicecallsCometChatCalls.init()ANDCometChatCalls.loginWithAuthToken(...)for you internally — once Chat SDK login resolves, the kit hands the auth token to the Calls SDK and brings it online. You do NOT need to callCometChatCalls.loginyourself. Seelib/call_ui/src/call_event_service.dartlines 87-197 in the installed package.The earlier version of this skill said "Same as v5 cohort — you MUST also call
CometChatCalls.login." That's wrong for V6 UIKit usage. It IS correct only when the integration is raw SDK (no UIKit) — i.e. the developer importedcometchat_calls_sdkdirectly without going throughCometChatUIKit. Most integrations don't.
The V6 UIKit recipe (recommended — 99% of integrations):
final settings = (UIKitSettingsBuilder()
..subscriptionType = CometChatSubscriptionType.allUsers
..region = REGION
..appId = APP_ID
..authKey = AUTH_KEY
..enableCalls = true) // <-- this flag wires CallEventService
.build();
CometChatUIKit.init(
uiKitSettings: settings,
onSuccess: (_) async {
await CometChatUIKit.login(uid); // kit logs Chat SDK
// Calls SDK login fires INTERNALLY here via CallEventService.
// No manual CometChatCalls.login needed.
},
onError: (e) { /* surface */ },
);
Raw-SDK fallback (only if NOT using CometChatUIKit):
// You should rarely need this in V6 — only when you've opted out of the UIKit
// entirely and are wiring chat-sdk + calls-sdk by hand.
import 'package:cometchat_calls_sdk/cometchat_calls_sdk.dart';
// Chat SDK login is POSITIONAL (cometchat.dart:843 — login(String uid, String authKey, {onSuccess, onError}))
await CometChat.login(uid, AUTH_KEY, onSuccess: (User u) {}, onError: (CometChatException e) {});
// Calls SDK login uses NAMED params; onError is CometChatCallsException (cometchatcalls.dart:224-228)
CometChatCalls.login(
uid: uid,
authKey: AUTH_KEY,
onSuccess: (User? callUser) { /* both ready */ },
onError: (CometChatCallsException e) { /* surface */ },
);
Surprises:
- The kit waits to log the Calls SDK in until Chat SDK login resolves; this is internal — your code only awaits Chat SDK login.
- If you set
enableCalls = truebut Chat-SDK login never fires (init error, network), call buttons silently render but the internalCometChatCalls.startSessionflow throws "auth token cannot be null" (there is nostartCallmethod — the lifecycle isstartSession/joinSession). The fix is to surface the Chat SDK login error, not to add a manualCometChatCalls.login. - Cross-reference:
references/add-calls-to-existing-chat.md(additive-mode recipe) shows the same canonical pattern.
1.1 Dual-SDK contract — CometChatUIKitCalls.init after CometChatUIKit.init
The V6 UI Kit unifies the two SDKs but init order is still load-bearing:
// ✓ RIGHT — calls init in chat init's onSuccess
CometChatUIKit.init(
uiKitSettings: settings,
onSuccess: (_) {
CometChatUIKitCalls.init(appId, region,
onSuccess: (_) => debugPrint('Calls SDK ready'),
onError: (e) => debugPrint('Calls init failed: ${e.message}'),
);
},
);
// ✗ WRONG — parallel init causes "auth token null" intermittently
CometChatUIKit.init(uiKitSettings: settings); // returns immediately
CometChatUIKitCalls.init(appId, region); // race — chat auth not ready yet
CometChatUIKitCalls.init() must be called exactly once per app lifecycle. Re-calling it after logout + re-login causes "session already started" errors.
After logout: the calls SDK session is invalidated; on next login, call CometChatUIKitCalls.init() again. Treat this as a "first run" of the calls subsystem.
1.2 VoIP push — external packages (FCM + CallKit/PushKit bridge)
There is NO bundled
native_call_kitmodule incometchat_chat_uikitv6. (Verified against the publishedcometchat_chat_uikit6.0.1 source — nonative_call_kitdirectory, and noflutter_callkit_incoming/ CallKit / ConnectionService dependency in itspubspec.yaml.) VoIP push is wired with the SAME external packages the v5 family uses — the kit does not provide an OS-ring-UI module of its own.
Wire VoIP push with:
firebase_messaging— FCM data messages on Android (and iOS data path)flutter_callkit_incoming— cross-platform OS-level incoming-call ring UI (iOS CallKit + Android ConnectionService); you add this package yourself- iOS PushKit — platform-channel bridge for VoIP pushes (Flutter has no first-party PushKit plugin) — same approach as v5
The Dart-side handler decodes the incoming-call payload from FCM/PushKit, shows the ring UI via flutter_callkit_incoming, and on accept routes into the kit's call surface. In additive mode this is opt-in; in standalone, mandatory.
1.3 Foreground service — same Android 14+ rules
⚠️ Android build prerequisite — Jetifier is mandatory. In V6 calls are bundled in cometchat_chat_uikit (there is no separate cometchat_calls_uikit package); one of its transitive deps still pulls in the legacy com.android.support:support-compat:26.1.0 AAR. Without Jetifier, AGP fails with Duplicate class android.support.v4.* errors. Set in android/gradle.properties:
android.useAndroidX=true
android.enableJetifier=true
Flutter 3.x scaffolds omit enableJetifier=true by default — the build fails on first flutter build apk if you skip this.
Same as native Android / Flutter v5. The four FOREGROUND_SERVICE_* permissions plus MANAGE_OWN_CALLS / BIND_TELECOM_CONNECTION_SERVICE in android/app/src/main/AndroidManifest.xml. V6 raised Android minSdk to 26 (calls SDK in V6 raised the floor) — verify this is set in android/app/build.gradle.
1.4 Server-minted auth tokens
cometchat-flutter-v6-production covers it. CometChatUIKit.loginWithAuthToken(token) for production, never loginWithAuthKey(uid, authKey).
1.5 Hangup cleanup — Calls + ServiceLocator + native call UI
Future<void> endCall(String sessionId) async {
await CometChatUIKitCalls.endSession(); // 1. end WebRTC + release tracks
await FlutterCallkitIncoming.endAllCalls(); // 2. clear OS-level ring UI
if (mounted) Navigator.of(context, rootNavigator: true).pop(); // 3. pop call screen
}
After CometChatUIKit.logout(), also reset the calls service locator:
CallOperationsServiceLocator.instance.reset();
The kit's call widgets handle the basic teardown automatically; custom WebRTC surfaces must replicate this.
1.6 Permissions — permission_handler + CallPermissions
V6 ships an internal CallPermissions helper that wraps the standard permission flow:
final granted = await CallPermissions.requestMicrophoneAndCamera(); // video; use requestMicrophone() for audio-only
if (!granted) { /* surface a clear UI message */ }
Native config (Info.plist + AndroidManifest) is identical to V5 (rule 1.6 in cometchat-flutter-v5-calls).
1.7 IncomingCall — automatic when enableCalls = true (ENG-35698)
Canonical truth from
cometchat_chat_uikit-6.0.1: the kit'sCallEventServiceautomatically callsIncomingCallOverlay.show(...)fromlib/call_ui/src/incoming_call/cometchat_display_incoming_call_overlay.dartwhenever a foreground incoming call fires ANDenableCalls = trueis set onUIKitSettingsBuilder. You do NOT mount the overlay yourself. There is NOCometChatDisplayIncomingCallOverlaywidget — that was a fictional class name from earlier drafts. The real class isIncomingCallOverlay(incometchat_display_incoming_call_overlay.dart) and it's an imperative singleton (.show(...)/.dismiss()).
The correct V6 wiring is just the navigatorKey:
MaterialApp(
navigatorKey: CallNavigationContext.navigatorKey, // ⚠️ REQUIRED — see warning below
home: const AppRoot(), // your existing root
);
That's it. No Stack, no builder wrapper, no mounting of an "overlay widget" — once enableCalls = true is in your UIKitSettingsBuilder, the kit's CallEventService shows + dismisses IncomingCallOverlay for you when foreground rings happen.
⚠️ navigatorKey: CallNavigationContext.navigatorKey is REQUIRED on MaterialApp — still active in v6.0.1 GA. The kit's CometChatCallButtons and outgoing-call flow navigate via CallNavigationContext.navigatorKey.currentContext. Without this line, CometChat.initiateCall succeeds (CALL-TRAP confirms onSuccess fires with a valid sessionId) but currentContext is null so CometChatOutgoingCall never mounts. Symptom: user taps call button, peer rings, but the Flutter app shows nothing. Note: the vendor's own 6.0.1 sample app (examples/sample_app) is broken for calls on mobile out-of-the-box — its main.dart sets navigatorKey: kIsWeb ? CallNavigationContext.navigatorKey : null, i.e. it wires the key only on web and passes null on Android/iOS, so the outgoing-call screen never mounts on a device (validated on Pixel 3). The kit's other sample (examples/ai_sample_app) sets it unconditionally (navigatorKey: navigatorKey + CallNavigationContext.navigatorKey = navigatorKey) — that is the correct, device-safe form this skill prescribes. Wire navigatorKey: CallNavigationContext.navigatorKey unconditionally (do NOT gate it on kIsWeb like sample_app does); don't copy sample_app's main.dart verbatim.
Import: import 'package:cometchat_chat_uikit/cometchat_calls_uikit.dart' show CallNavigationContext; (use show to avoid a name collision with kit-exported IncomingCallOverlay).
✅ Outgoing → in-call screen transition is FIXED in v6.0.1 GA. (It was broken in v6.0.0-beta2 — the outgoing-call screen stayed on "Calling…" indefinitely after the peer accepted.) Validated end-to-end 2026-05-27 on Pixel 3 with full CALL-TRAP instrumentation: with the navigatorKey wired (above), when the peer accepts, the kit's OutgoingCallBloc swaps the outgoing screen for the in-call surface automatically (via the kit's internal call-overlay — CallScreenOverlay.show()), transitioning from CometChatOutgoingCall ("Calling…") to the in-call view — observed call-duration timer ticking + WebRTC rendering frames @ ~27 fps. The v6.0.0 changelog's "Refreshed BLoC implementations across … call buttons, and ongoing call flows" was the fix. No client-side workaround needed beyond the navigatorKey wiring.
In standalone mode, flutter_callkit_incoming (the external package you add) owns the OS-level ring UI; the kit's in-app overlay only fires when the app is foregrounded.
2. Setup
# pubspec.yaml
dependencies:
flutter:
sdk: flutter
cometchat_chat_uikit: ^6.0 # calls bundled in
permission_handler: ^11.0.0
flutter_callkit_incoming: ^2.0.0 # standalone — VoIP UI bridge
firebase_messaging: ^14.0.0 # standalone — Android FCM
firebase_core: ^2.0.0
V6 GA is on pub.dev — use the plain dependency above, NOT a Cloudsmith
hosted:stanza. Cloudsmith (dart.cloudsmith.io/cometchat/cometchat/) only hosts the pre-GA6.0.0-beta*builds, so ahosted:install of^6.0.xfails with "version solving failed". The GA range resolves6.0.1/6.0.2/6.0.3from pub.dev. (Cloudsmith is only for the legacy V5 packages.)
Init (additive mode):
import 'package:cometchat_chat_uikit/cometchat_chat_uikit.dart';
import 'package:cometchat_chat_uikit/cometchat_calls_uikit.dart';
void main() async {
WidgetsFlutterBinding.ensureInitialized();
final settings = (UIKitSettingsBuilder()
..appId = CometChatConfig.appId
..region = CometChatConfig.region
..authKey = CometChatConfig.authKey
..subscriptionType = CometChatSubscriptionType.allUsers)
.build();
CometChatUIKit.init(
uiKitSettings: settings,
onSuccess: (_) {
CometChatUIKitCalls.init(
CometChatConfig.appId,
CometChatConfig.region,
onSuccess: (_) => runApp(const MyApp()),
onError: (e) => runApp(MyErrorApp(e.message)),
);
},
onError: (e) => runApp(MyErrorApp(e.message)),
);
}
The first import gives you chat components. The second gives you call-specific types.
3. Components catalog (V6 widgets — Bloc-driven)
Architecture (lives inside cometchat_chat_uikit):
call_ui/src/
├── call_buttons/ # CometChatCallButtons + CallButtonsBloc
├── incoming_call/ # CometChatIncomingCall + IncomingCallBloc
├── outgoing_call/ # CometChatOutgoingCall + OutgoingCallBloc
├── ongoing_call/ # CometChatOngoingCall + OngoingCallBloc
├── call_logs/ # CometChatCallLogs + CallLogsBloc + Clean Architecture
├── call_operations/ # Shared DI / use cases / repositories (CallOperationsServiceLocator)
├── call_bubble/ # CometChatCallBubble — call-event bubble in message list (auto-rendered)
├── call_settings/ # CometChatUIKitCalls, CallNavigationContext
├── utils/ # CallUtils, CallStateService, CallPermissions
├── call_event_service.dart # Centralized call event handling
└── calling_configuration.dart # Top-level config object
Component reference
| Widget | Purpose | Notes |
|---|---|---|
CometChatCallButtons(user:, group:) | Voice + video buttons | Mutually exclusive user / group. Use group: for group calls (meetings). |
CometChatIncomingCall(call:, user:, onAccept:, onDecline:) | In-app foreground ring UI | onAccept/onDecline are (BuildContext, Call) -> void. Custom view slots: titleView, subTitleView, leadingView, trailingView. ⚠️ Param-name quirk: this widget's settings param is callSettingsBuilder: (takes a SessionSettingsBuilder), NOT sessionSettingsBuilder: like Ongoing/Outgoing — verified lib/call_ui/src/incoming_call/cometchat_incoming_call.dart. |
CometChatOutgoingCall(call:, user:, outgoingCallStyle:) | Dialing UI | Auto-mounted when initiateCall is called via the kit. |
CometChatOngoingCall(sessionSettingsBuilder:, sessionId:, callWorkFlow:) | Active call view | Param is sessionSettingsBuilder: NOT callSettingsBuilder: (verified lib/call_ui/src/ongoing_call/cometchat_ongoing_call.dart constructor). callWorkFlow: CallWorkFlow.directCalling or CallWorkFlow.defaultCalling. Set resizeToAvoidBottomInset: false on host Scaffold. |
CometChatCallLogs(onItemClick:, callLogsStyle:) | Paginated history | Clean Architecture + BLoC; CallLogsServiceLocator is initialized automatically when the widget mounts. |
CometChatCallBubble | Call-event message bubble | Auto-rendered for call-type messages in CometChatMessageList. |
CometChatUIKitCalls API
| Method | Purpose |
|---|---|
CometChatUIKitCalls.init(appId, region) | Initialize calls SDK (after chat init — rule 1.1) |
CometChatUIKitCalls.initiateCall(call) | Start a call (Chat SDK initiate + Calls SDK preflight) |
CometChatUIKitCalls.acceptCall(sessionId) | Accept incoming |
CometChatUIKitCalls.rejectCall(sessionId, status) | Reject / cancel |
CometChatUIKitCalls.generateToken(sessionId) | Mint session-scoped RTC token |
CometChatUIKitCalls.startSession(sessionId, settings) | Start WebRTC |
CometChatUIKitCalls.endSession() | End and cleanup |
CallingConfiguration — top-level config
CallingConfiguration(
outgoingCallConfiguration: CometChatOutgoingCallConfiguration(...),
incomingCallConfiguration: CometChatIncomingCallConfiguration(...),
callButtonsConfiguration: CallButtonsConfiguration(...),
groupSessionSettingsBuilder: sessionSettingsBuilder,
)
Pass to UIKitSettings.callingConfiguration to apply globally without per-component plumbing.
Bloc events (when interacting directly — UIKit widgets handle these for you)
| Bloc | Events |
|---|---|
CallButtonsBloc | InitiateVoiceCall, InitiateVideoCall |
IncomingCallBloc | AcceptCall, RejectCall |
OutgoingCallBloc | CancelCall, CallAccepted(call), CallRejected(call) |
OngoingCallBloc | StartSession(sessionId, settings), EndSession |
CallLogsBloc | LoadCallLogs, LoadMoreCallLogs |
CallOperationsServiceLocator must be initialized before using call BLoCs directly — UIKit widgets handle this automatically. After logout, call CallOperationsServiceLocator.instance.reset() to clean up.
4. Standalone integration
When product === "voice-video" and there is no v6 chat integration.
Telemetry attribution (
ai-agent). Session mode (§4a, Calls SDK only) MUST init viaCometChatCalls.initFromSettings(onSuccess:, onError:)(cometchat_calls_sdk >= 5.0.4, verified againstlib/src/plugin/cometchatcalls.dart) reading thecometchat-settings.jsonasset — the only reporter in a calls-only app; fires onCometChatCalls.login. Additive mode: no calling-enable field is needed —integrationSource = "ai-agent"is persisted (appId-scoped) by the chat-sideCometChatUIKit.initFromSettings(cometchat-flutter-v6-core), and the calls integration is attributed at the backend from the calls SDK version + platform present in the/user_sessionsnode. Enabling calls via..enableCalls = true+CometChatUIKitCalls.init()does not affect either signal.
Split by calling mode:
4a. Standalone — Session mode (meeting-room UX, no ringing)
Calls SDK ONLY. NO Chat SDK, NO UIKit. Same SDK as v5 (cometchat_calls_sdk). Scaffold:
pubspec.yaml—cometchat_calls_sdk: ^5.0.4(the floor that shipsinitFromSettings) +flutter_bloc+equatable+permission_handler. Declarecometchat-settings.jsonunderflutter: assets:.lib/main.dart—CometChatCalls.initFromSettings(onSuccess: ..., onError: ...)reading the committedcometchat-settings.jsonasset so the calls-only app self-reportsintegrationSource = "ai-agent"(cometchat_calls_sdk >= 5.0.4, verified againstsrc/plugin/cometchatcalls.dart; on<= 5.0.3fall back toCometChatCalls.init((CallAppSettingBuilder()..appId = APP_ID..region = REGION).build(), onSuccess:, onError:)—CallAppSettingBuilderexposes onlyappId/region/host overrides, noauthKey). Permission requests. NO Chat SDK init. The report fires onCometChatCalls.loginsuccess.lib/cubits/call_session_cubit.dart— Cubit implementsSessionStatusListeners.CometChatCalls.joinSession(sessionId:, sessionSettings: SessionSettingsBuilder().build(), onSuccess:, onError:). Renders the returnedWidget?viaSizedBox.expand. Seereferences/call-session.md.lib/screens/call_room.dart—BlocConsumerfor auto-pop on idle transition.- Native config — Camera + microphone permissions only.
Why no Chat SDK / no UIKit: session mode never touches a Chat SDK call entity. No ringing, no UIKit incoming-call overlay needed.
4b. Standalone — Ringing mode (kit overlay + CallKit + FCM)
Dual-SDK + UIKit. Scaffold:
lib/main.dart— Chat SDK + Calls SDK init (no UIKit), permission requests,flutter_callkit_incoming+ Firebase setup.lib/services/voip_service.dart— FCM + PushKit +flutter_callkit_incomingbridge (you write this; the kit ships no VoIP/ring-UI module).lib/widgets/call_button.dart— Voice + video buttons next to a contact.lib/screens/ongoing_call_screen.dart—CometChatCalls.joinSession(sessionId:, sessionSettings:, onSuccess:, onError:)with Widget rendered viaSizedBox.expand. Cubit-driven state.lib/screens/call_logs_screen.dart—/callsroute.MaterialApp—navigatorKey: CallNavigationContext.navigatorKeywired;enableCalls = trueon UIKitSettingsBuilder shows the foreground overlay automatically (rule 1.7). No widget mount needed.- Native config — same as V5 standalone (Info.plist + AndroidManifest + Firebase config files).
5. Additive integration
When chat is already integrated. The skill:
- Confirms
cometchat_chat_uikitis on^6.0.1— calls are already bundled. - Patches the
CometChatUIKit.initcall to addCometChatUIKitCalls.initin the success callback (rule 1.1). - Confirms
..enableCalls = trueis set on UIKitSettingsBuilder (rule 1.0) so foreground overlay fires automatically; ensuresnavigatorKey: CallNavigationContext.navigatorKeyis on MaterialApp (rule 1.7). - Confirms
CometChatMessageHeadershows call buttons by default (hideVoiceCallButton: false,hideVideoCallButton: false). - Optionally adds
CometChatCallLogsas a tab/screen. - VoIP push: opt-in.
6. Anti-patterns
Shortened here. Read the whole file on GitHub.
Signals
- GitHub stars
- 105
- Forks
- 2
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
cometchat-flutter-v6-calls- Source
- github.com/cometchat/cometchat-skills