Habilidades flutter-expert
📦

flutter-expert

Seguro

Build Cross-Platform Apps with Flutter

Também disponível em: 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.

Suporta: Claude Codex Code(CC)
🥉 74 Bronze
1

Baixar o ZIP da skill

2

Upload no Claude

Vá em Configurações → Capacidades → Skills → Upload skill

3

Ative e comece a usar

Testar

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

Resultado esperado:

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.

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

Resultado esperado:

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.

Auditoria de Segurança

Seguro
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
Arquivos analisados
0
Linhas analisadas
0
achados
1
Total de auditorias
Nenhum problema de segurança encontrado
Auditado por: claude

Pontuação de qualidade

38
Arquitetura
100
Manutenibilidade
87
Conteúdo
50
Comunidade
100
Segurança
91
Conformidade com especificações

O Que Você Pode Construir

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

Tente Estes 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.

Melhores Práticas

  • 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

Evitar

  • 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

Perguntas Frequentes

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.

Detalhes do Desenvolvedor

Estrutura de arquivos

📄 SKILL.md