Cometchat Flutter V6 Troubleshooting logo

Cometchat Flutter V6 Troubleshooting

Organization
cometchat
cometchat-flutter-v6-troubleshooting

Diagnose a broken CometChat Flutter integration — blank screens, unbounded-height crashes, lists that don't fill, login and Region failures, calls that never ring, push that never arrives, and v5 leftovers. Symptom → cause → fix. Triggers: 'cometchat not working flutter', 'blank chat screen', 'RenderFlex unbounded height', 'login failed cometchat', 'calls not ringing', 'push not arriving'.

Overview

Publishercometchat
Repositorycometchat-skills
Skill namecometchat-flutter-v6-troubleshooting
Stars
109
Forks
2
Bundled files
Instructions only
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by cometchat on GitHub. Read the source before you install it.

Installation

Install the Cometchat Flutter V6 Troubleshooting AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/cometchat/cometchat-skills.git /tmp/cometchat-skills
mkdir -p .claude/skills
cp -r /tmp/cometchat-skills/skills/cometchat-flutter-v6-troubleshooting .claude/skills/cometchat-flutter-v6-troubleshooting
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Cometchat Flutter V6 Troubleshooting in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Cometchat Flutter V6 Troubleshooting on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Cometchat Flutter V6 Troubleshooting is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Ground truth: every cause below was confirmed against the published 6.1.0 (compiler or documented behaviour). The live page is /ui-kit/flutter/troubleshooting via ../cometchat-flutter-v6-core/references/docs-map.md. The deeper per-topic tables live in core's references/troubleshooting.md and references/anti-patterns.md — this skill is the entry point that ROUTES to the right one.

Companion skills (read first)

  • cometchat-flutter-v6-core — install, credentials, init→login→render, plus the reference tables this skill routes into. This skill ASSUMES it.

Use this skill when

Something is already built and is not working: a blank screen, a crash, an empty list, no ring, no notification.

Prerequisites & install

None — diagnosis only.

Triage in order (cheapest first)

  1. Does flutter analyze pass? A stale v5 symbol or a wrong barrel import is a compile error, not a runtime mystery.
  2. Did init AND login both reach onSuccess? Log both. Most "blank chat" reports stop here.
  3. Is the failing widget inside a bounded box? The second-most-common cause, and it is always the host's container.
  4. Is the thing you expect actually enabled — Dashboard toggle (extensions, moderation), uiKit.enableCalling, a push provider?
  5. Only then look at the kit.

Symptom → cause → fix

SymptomCauseFix
Blank/white chat screenA widget built before login resolvedGate the first frame on init and login (lifecycle.md)
Unable to load asset: cometchat-settings.jsonNot at project root, or not registeredAdd under flutter: assets:, re-run flutter pub get
Crash on startup before any UIWidgetsFlutterBinding.ensureInitialized() missingCall it first in main()initFromSettings reads an asset
RenderFlex … unbounded heightA kit list in an unbounded parentExpanded/Flexible, or a fixed height (layout.md)
List renders as a zero-height sliverSame — content-driven parentSame
Composer hidden by the keyboardresizeToAvoidBottomInset: false, or nested ScaffoldsLeave the default true; one Scaffold per screen
Header under the notchNo SafeAreaWrap the body
Two app barsYour Scaffold AppBar + the widget's ownhideAppbar: true on the list widget
Login fails instantlyWrong Region, or the UID doesn't existMatch the Dashboard region exactly; use a real UID (Dashboard → Users)
Works in debug, fails in releaseObfuscation, or the settings asset not bundledTest the release build; verify the asset ships
Undefined name 'CometChatIncomingCall' (any call widget)Only the chat barrel importedAlso import …/cometchat_calls_uikit.dart (-calls)
Call buttons never appearCalls not enabled on BOTH sidesuiKit.enableCalling: true and cometchat_calls_sdk installed
Call surface opens blackCamera/mic permission missing, or a simulatorAdd usage strings/permissions; test on a real device
Incoming call never shows (calling on)No navigatorKey on the root MaterialApp — kit logs "Incoming call overlay cannot be shown"navigatorKey: CallNavigationContext.navigatorKey (-calls)
Two incoming-call screensOwn CallListener + CometChatIncomingCall on top of the kit's CallEventService overlayRemove yours — the kit presents it; customize via CallingConfiguration
Thread replies never sendparentMessageId without user:/group:Pass BOTH on the thread list and composer
Enabled extension doesn't appearExpecting v5 registrationv6 auto-surfaces it; confirm the Dashboard toggle, add NO code
Push never arrivesNo Dashboard provider, or registered before loginConfigure the provider; register after login; re-register on refresh (-push)
Previous user still gets notificationsPush token never unregistered on logoutUnregister before logout()
Presence never updatessubscribePresenceForAllUsers falseSet it true in the settings file
Messages only arrive on reopenSocket not auto-connectingchatSDK.autoEstablishSocketConnection: true
Duplicate events after hot restartListener not removed in disposePair every add with a remove (-events)
The named parameter 'x' isn't defined on a kit widgetFollowing a doc page that driftedTrust the compiler; several Flutter pages had wrong signatures — check DOCS-BACKLOG.md PART 4
Android build fails on minSdkBelow the floor (the docs' 24 is too low)minSdk = 26 — forced by cometchat_calls_sdk, a hard dependency of the kit
iOS pod install failsDeployment target too lowplatform :ios, '15.1' (13.0 through calls-sdk 5.0.6), then pod install
Everything broke after upgradingMixed majors / removed v5 APIscometchat-flutter-v6-migration; never mix majors

When the docs and the compiler disagree, the compiler wins

Several ui-kit/flutter pages documented parameters that do not exist in 6.1.0 (thread header, search callbacks, style names). If a documented snippet will not compile, that is a docs bug: use the real signature, and flag the page (RULES.md §20) rather than working around it forever.

Still stuck — collect this before escalating

Kit + SDK versions from pubspec.lock · the flutter analyze output · whether init/login reached onSuccess · the exact exception + stack · platform and whether it is a real device · the relevant Dashboard toggles. Most escalations are resolved by the first three.

Verify it works

The specific symptom is gone, flutter analyze is clean, and the fix was to the HOST's wiring (gating, container, imports, config) — if the answer looked like "patch around the kit", re-check the table.

Frequently asked questions

What does the Cometchat Flutter V6 Troubleshooting AI skill do?

Diagnose a broken CometChat Flutter integration — blank screens, unbounded-height crashes, lists that don't fill, login and Region failures, calls that never ring, push that never arrives, and v5 leftovers. Symptom → cause → fix. Triggers: 'cometchat not working flutter', 'blank chat screen', 'RenderFlex unbounded height', 'login failed cometchat', 'calls not ringing', 'push not arriving'.

Why use Cometchat Flutter V6 Troubleshooting on TypingMind?

Because you install it once and use it with any model. Cometchat Flutter V6 Troubleshooting is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Cometchat Flutter V6 Troubleshooting in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/cometchat/cometchat-skills/tree/main/skills/cometchat-flutter-v6-troubleshooting. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Cometchat Flutter V6 Troubleshooting?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Cometchat Flutter V6 Troubleshooting?

As many as you like. As long as a model supports skills, you can use Cometchat Flutter V6 Troubleshooting with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Cometchat Flutter V6 Troubleshooting AI skill free?

Yes. It is published on GitHub by cometchat under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇