Fähigkeiten flutter-expert
📦

flutter-expert

Sicher

Build Cross-Platform Apps with Flutter

Auch verfĂĽgbar von: 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.

UnterstĂĽtzt: Claude Codex Code(CC)
🥉 74 Bronze
1

Die Skill-ZIP herunterladen

2

In Claude hochladen

Gehe zu Einstellungen → Fähigkeiten → Skills → Skill hochladen

3

Einschalten und loslegen

Teste es

Verwendung von "flutter-expert". How do I implement a responsive layout that works on mobile and desktop?

Erwartetes Ergebnis:

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.

Verwendung von "flutter-expert". What's the best state management for a large e-commerce app?

Erwartetes Ergebnis:

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.

Sicherheitsaudit

Sicher
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
Gescannte Dateien
0
Analysierte Zeilen
0
befunde
1
Gesamtzahl Audits
Keine Sicherheitsprobleme gefunden
Auditiert von: claude

Qualitätsbewertung

38
Architektur
100
Wartbarkeit
87
Inhalt
50
Community
100
Sicherheit
91
Spezifikationskonformität

Was du bauen kannst

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

Probiere diese Prompts

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.

Bewährte Verfahren

  • 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

Vermeiden

  • 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

Häufig gestellte Fragen

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.

Entwicklerdetails

Dateistruktur

đź“„ SKILL.md