flutter▌
66 indexed skills · max 10 per page
flutter-expert
jeffallan/claude-skills · Productivity
Cross-platform mobile development with Flutter 3, Dart, and production-grade state management patterns. \n \n Covers widget development, Riverpod and Bloc state management, GoRouter navigation, and platform-specific implementations with detailed reference guides for each \n Enforces const optimization, proper key usage, and scoped state patterns to prevent unnecessary rebuilds and full-subtree re-renders \n Includes profiling workflows with Flutter DevTools, jank diagnosis, and performance optim
flutter-performance
flutter/skills · Productivity
Identifies and eliminates performance bottlenecks in Flutter apps through systematic profiling and targeted optimization. \n \n Provides a decision tree to diagnose jank on UI thread, Raster (GPU) thread, or both, with specific fixes for each \n Includes integration test templates using traceAction and TimelineSummary to establish performance baselines and measure frame budgets \n Covers UI optimization (localizing state, const constructors, StringBuffer usage) and Raster optimization (replacing
flutter-ui-ux
ajianaz/skills-collection · Frontend
Create beautiful, responsive, and animated Flutter applications with modern design patterns and best practices.
flutter-development
aj-geddes/useful-ai-prompts · Productivity
Create high-performance, visually stunning mobile applications using Flutter with Dart language. Master widget composition, state management patterns, navigation, and API integration.
flutter-home-screen-widget
flutter/skills · Productivity
Native home screen widgets for Flutter apps on iOS and Android with cross-platform data sharing. \n \n Establishes data sharing between Dart and native platforms via App Groups (iOS) and SharedPreferences (Android), enabling widget updates from your Flutter app \n Supports simple text-based widgets and complex Flutter UI rendered as static images for native display \n Requires native setup in Xcode (Widget Extension target with Swift TimelineProvider) and Android Studio (AppWidgetProvider with X
flutter-networking
madteacher/mad-agents-skills · Productivity
HTTP CRUD operations, WebSocket real-time communication, authentication, and performance optimization for Flutter apps. \n \n Covers all HTTP methods (GET, POST, PUT, DELETE) with JSON serialization, plus WebSocket connections for real-time data \n Includes authentication patterns (Bearer tokens, Basic Auth, API keys) and comprehensive error handling by status code \n Provides background JSON parsing with isolates to prevent UI blocking on large responses, plus retry logic with exponential backo
flutter-testing
madteacher/mad-agents-skills · Testing
Comprehensive guidance for unit, widget, and integration testing across Flutter applications. \n \n Covers three test types with trade-off analysis: unit tests for isolated logic (fast, low maintenance), widget tests for UI components (higher confidence, more dependencies), and integration tests for end-to-end flows (highest confidence, slowest execution) \n Includes practical examples for all three test categories, from basic Counter tests to complex user flows and performance profiling \n Prov
flutter-environment-setup-macos
flutter/skills · Productivity
Automated macOS Flutter development environment setup with dependency validation and diagnostic fixes. \n \n Verifies Flutter installation, Xcode availability, and CocoaPods presence; stops with clear instructions if any prerequisite is missing \n Guides users through Xcode command-line tool configuration and license acceptance with required sudo commands \n Runs iterative flutter doctor validation loops to identify and resolve remaining toolchain issues until the Xcode section passes completely
flutter-databases
flutter/skills · Productivity
MVVM-compliant data layer for Flutter with Repository pattern, stateless Services, and intelligent local caching strategies. \n \n Guides selection of persistence technology (shared_preferences, sqflite, drift, hive_ce, isar_community, or file I/O) based on data type, size, and relational complexity \n Implements Repository as single source of truth, isolating DatabaseService and ApiClient as private stateless dependencies \n Provides complete code examples for domain models, SQLite operations,
flutter-app-size
flutter/skills · Productivity
Measure and optimize Flutter app bundle, APK, or IPA size with platform-specific analysis and reduction strategies. \n \n Supports Android (APK/AppBundle), iOS (IPA), and desktop platforms (Linux, macOS, Windows) with platform-specific measurement workflows \n Generates code size analysis JSON files via flutter build --analyze-size and integrates with Dart DevTools App Size Tool for component breakdown visualization \n Implements size reduction through debug info splitting, asset compression, an