スキル flutter-expert
📦

flutter-expert

安全

Build Cross-Platform Apps with Flutter

こちらからも入手できます: Jeffallan

Flutter developers need expert guidance on architecture, state management, and performance optimization across multiple platforms. This skill provides comprehensive Flutter 3.x and Dart 3 expertise for building production-ready applications.

対応: Claude Codex Code(CC)
🥉 74 ブロンズ
1

スキルZIPをダウンロード

2

Claudeでアップロード

設定 → 機能 → スキル → スキルをアップロードへ移動

3

オンにして利用開始

テストする

「flutter-expert」を使用しています。 How do I implement a responsive layout that works on mobile and desktop?

期待される結果:

Use LayoutBuilder combined with Breakpoints. For example:

```dart
Widget build(BuildContext context) {
return LayoutBuilder(
builder: (context, constraints) {
if (constraints.maxWidth < 600) {
return MobileLayout();
}
return DesktopLayout();
},
);
}
```

You can also use media queries and flutter_responsive for more complex scenarios.

「flutter-expert」を使用しています。 What's the best state management for a large e-commerce app?

期待される結果:

For large e-commerce apps, I recommend Riverpod 2.x or Bloc. Riverpod offers compile-time safety and excellent testing support. Bloc provides clear separation of events and states. Consider a hybrid: Riverpod for dependency injection and global state, Bloc for complex business logic in feature modules.

セキュリティ監査

安全
v1 • 2/25/2026

Prompt-only skill with no executable code. Static analysis scanned 0 files (0 lines) and detected 0 potential security issues. Risk score: 0/100. This is a benign Flutter development assistant skill that provides guidance, best practices, and code examples through natural language prompts only.

0
スキャンされたファイル
0
解析された行数
0
検出結果
1
総監査数
セキュリティ問題は見つかりませんでした
監査者: claude

品質スコア

38
アーキテクチャ
100
保守性
87
コンテンツ
50
コミュニティ
100
セキュリティ
91
仕様準拠

作れるもの

Architecture Design

Get guidance on structuring Flutter apps with clean architecture, dependency injection, and modular code organization

State Management Selection

Receive recommendations for state management solutions based on app complexity and team experience

Performance Optimization

Learn techniques for optimizing widget rebuilds, memory usage, and rendering performance

これらのプロンプトを試す

Basic Flutter Question
How do I implement [specific widget or feature] in Flutter?
Architecture Planning
Design a clean architecture structure for a Flutter app that needs [feature list]. What folders, patterns, and dependencies should I use?
State Management Implementation
Implement state management for a [describe app feature] using [Riverpod/Bloc/GetX]. Include code examples for state, events, and UI consumption.
Platform Integration
Create a platform channel to access [native iOS/Android feature] from Flutter. Include both Dart and native code implementation.

ベストプラクティス

  • Use const constructors wherever possible to optimize widget rebuilds
  • Implement proper error handling with try-catch and custom Exception classes
  • Write comprehensive tests: unit tests for business logic, widget tests for UI components

回避

  • Avoid using setState() for complex state - use proper state management instead
  • Do not ignore the 'const' keyword on widgets that accept constant children
  • Avoid rebuilding entire widget trees - use Selector or Consumer for granular updates

よくある質問

Does this skill work with Flutter Web?
Yes. This skill covers Flutter web deployment, PWA configuration, and web-specific optimizations.
Can this help with iOS and Android specific code?
Yes. The skill includes platform channel creation, Swift/Kotlin integration, and native plugin development.
What Dart version does this support?
This skill covers Dart 3.x features including records, patterns, sealed classes, and null safety.
Can this skill write complete app code?
This skill provides guidance, code examples, and architecture recommendations. It does not execute or build code.
Does it cover testing strategies?
Yes. Includes unit testing, widget testing, integration testing, and golden file testing best practices.
Can this help with performance optimization?
Yes. Covers Impeller optimization, widget rebuild minimization, memory profiling, and build size reduction.

開発者の詳細

ファイル構成

📄 SKILL.md