This covers the essentials of bridging Flutter with native Android and iOS code through MethodChannels, EventChannels, and Pigeon-generated interfaces. You'll need this when accessing platform APIs that Flutter doesn't expose, like certain hardware sensors or OS-level features. The guidance is practical: wrap platform calls in try-catch blocks, handle stream lifecycle properly, and use Pigeon for anything beyond simple key-value exchanges to avoid the brittleness of string-based APIs. It also touches on federated plugin architecture if you're building reusable platform code across projects. Solid fundamentals, though you'll still need to know your way around Kotlin and Swift to write the native side.
npx skills add https://github.com/dhruvanbhalara/skills --skill flutter-native