Agent skill
flutter-desktop-config
Configure Flutter for desktop platforms with platform channels and native integrations
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/flutter-desktop-config
SKILL.md
flutter-desktop-config
Configure Flutter for desktop platforms (Windows, macOS, Linux) with platform channels, native integrations, and platform-specific configurations.
Capabilities
- Enable Flutter desktop support
- Configure platform channels for native code
- Set up platform-specific runners
- Configure window management
- Set up menu bar and system tray
- Configure app icons and metadata
- Set up MSIX/DMG/DEB packaging
- Configure plugin support
Input Schema
{
"type": "object",
"properties": {
"projectPath": { "type": "string" },
"platforms": { "type": "array", "items": { "enum": ["windows", "macos", "linux"] } },
"windowConfig": { "type": "object" },
"nativeChannels": { "type": "array" }
},
"required": ["projectPath"]
}
Platform Channel Example
// Dart side
class NativeService {
static const platform = MethodChannel('com.example/native');
Future<String> getSystemInfo() async {
return await platform.invokeMethod('getSystemInfo');
}
}
// macOS (Swift)
let controller = FlutterViewController()
let channel = FlutterMethodChannel(name: "com.example/native",
binaryMessenger: controller.engine.binaryMessenger)
channel.setMethodCallHandler { call, result in
if call.method == "getSystemInfo" {
result(ProcessInfo.processInfo.operatingSystemVersionString)
}
}
Related Skills
cross-platform-test-matrixdesktop-build-pipelineprocess
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?