flutter-native

flutter-native is a skill for Claude Code, Codex from dhruvanbhalara/skills. It costs 28 tokens per session (543 once invoked), scanned A, original, MIT.

Guidance for connecting Flutter code with native Android and iOS code. MethodChannel handles one request and response, EventChannel handles ongoing streams such as sensor data, and Pigeon generates typed interfaces for more complex connections.

In plain words
What is it for?
Use it to build platform channels, receive continuous native events, create type-safe native APIs with Pigeon, and organize Android and iOS code.
Why use it?
It helps avoid fragile platform calls, missed errors, and resource leaks when a Flutter app needs features provided by the phone or computer.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/dhruvanbhalara/skills/flutter-native
Any agent
npx skills add dhruvanbhalara/skills --skill flutter-native
Clone the repo
git clone --depth 1 https://github.com/dhruvanbhalara/skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for flutter-native

README.md
[![agentmods](https://agentmods.dev/badge/skills/dhruvanbhalara/skills/flutter-native.svg)](https://agentmods.dev/skills/dhruvanbhalara/skills/flutter-native)
Your own site
<a href="https://agentmods.dev/skills/dhruvanbhalara/skills/flutter-native"><img src="https://agentmods.dev/badge/skills/dhruvanbhalara/skills/flutter-native.svg" alt="Measured on agentmods" height="20"></a>
Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 543 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00028 $0.00543
Opus 5 $0.00014 $0.00271
Sonnet 5 $0.00006 $0.00109
Haiku 4.5 $0.00003 $0.00054

Measured 4d ago against content hash be8aea81155e, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

flutter-native scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/flutter/flutter-native/SKILL.md · 65 lines

How it starts

The opening of the file, as written. The whole thing — 65 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Native Platform Interoperability

Developing Flutter apps often requires direct communication with the underlying native platform (Android/iOS). This skill covers the standards for maintainable and type-safe interoperability.

1. MethodChannels (One-shot)

Use MethodChannel for standard request-response patterns between Dart and Native.

Dart Standard

  • Use a unique domain-style channel name.
  • ALWAYS wrap calls in a try-catch for PlatformException.
static const _channel = MethodChannel('com.example.app/device_info');

Future<String?> getDeviceOS() async {
  try {
    return await _channel.invokeMethod<String>('getOS');
  } on PlatformException catch (e) {
    AppLogger.error('Failed to get OS', error: e);
    return null;
  }
}

2. EventChannels (Streams)

Use EventChannel for continuous data flow (e.g., sensor data, connectivity).

Implementation

  • Native side MUST handle onListen and onCancel.
  • Dart side MUST dispose the subscription to prevent leaks.

3. Type Safety with Pigeon

For complex APIs, avoid manual string-based keys. Use Pigeon to generate type-safe interfaces.

4. Platform-Specific Directory Structure

Organize native code within the relevant feature if possible, or use a dedicated plugins/ directory for shared logic.

5. Swift Package Manager (SPM) Defaults

Introduced in Flutter 3.44

  • For iOS/macOS native integrations, SPM is the default package manager. It replaces CocoaPods entirely for new configurations.
  • Declare Swift Packages directly in your plugin's pubspec.yaml using the swift_packages field, or configure them directly via Xcode workspaces (see flutter-spm).

6. Platform View Overhaul

Introduced in Flutter 3.44

  • Embedded native views (such as maps, web views, cameras) use an overhauled hybrid composition rendering pipeline to minimize dropped frames and eliminate UI compositing performance issues.

7. Federated Plugins

If the logic is reusable across multiple apps:

  • Split implementation into _platform_interface, _android, _ios, and _web packages.
  • Provide a single entry point for users.

Read the full file on GitHub · 65 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 65 lines · 28 tokens per session scan A be8aea81155e

Subscribe to this mod's changes

flutter-native is a skill published in the GitHub repository dhruvanbhalara/skills (29 stars, last pushed 5d ago), licensed MIT. It adds 28 tokens to every session and 543 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

kotlin-specialist

Provides idiomatic Kotlin implementation patterns including coroutine concurrency, Flow stream handling, multiplatform architecture, Compose UI construction, Ktor server setup, and type-safe DSL design. Use when building Kotlin applications requiring coroutines, multiplatform development, or Android with Compose.…

Jeffallan/claude-skills · 86 tokens

kotlin-tooling-agp9-migration

Migrates Kotlin Multiplatform (KMP) projects to Android Gradle Plugin 9.0+. Handles plugin replacement (com.android.kotlin.multiplatform.library), module splitting, DSL migration, and the new default project structure. Use when upgrading AGP, when build fails due to KMP+AGP incompatibility, or when the user mentions…

Kotlin/kotlin-agent-skills · 105 tokens

android-coroutines

Authoritative rules and patterns for production-quality Kotlin Coroutines onto Android. Covers structured concurrency, lifecycle integration, and reactive streams.

new-silvermoon/awesome-android-agent-skills · 29 tokens

kotlin-concurrency-expert

Kotlin Coroutines review and remediation for Android. Use when asked to review concurrency usage, fix coroutine-related bugs, improve thread safety, or resolve lifecycle issues in Kotlin/Android code.

new-silvermoon/awesome-android-agent-skills · 44 tokens

android-viewmodel

Best practices for implementing Android ViewModels using Kotlin 2.3+ Explicit Backing Fields, StateFlow for UI state, and SharedFlow for one-off events.

new-silvermoon/awesome-android-agent-skills · 37 tokens

compose-ui

Best practices for building UI with Jetpack Compose, focusing on state hoisting, detailed performance optimizations, and theming. Use this when writing or refactoring Composable functions.

new-silvermoon/awesome-android-agent-skills · 39 tokens