Google's UI toolkit for natively compiled apps — widget tree composition, state management, Material/Cupertino design, Navigator 2.0, animations, platform channels, and testing.
Scanned 9/12/2026
Install to Claude Code
npx -y skills add skeletorflet/opencode-supreme-setup --skill flutter --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Flutter?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/skeletorflet-flutter)More formats (shields.io, HTML) on the badges page.
---
name: flutter
description: Google's UI toolkit for natively compiled apps — widget tree composition, state management, Material/Cupertino design, Navigator 2.0, animations, platform channels, and testing.
trigger: flutter, flutter widget, flutter riverpod, flutter bloc, navigator 2.0, go_router, flutter animation, platform channel, flutter test
---
# Flutter
## Widget Tree Composition
Everything is a widget. UIs are built by composing small widgets into trees. `StatelessWidget` for fixed UI, `StatefulWidget` for mutable state.
## State Management
- **Riverpod** — compile-safe, testable provider system
- **Bloc** — event-driven state machine pattern
- Provider, GetX, and Redux alternatives available
## Material and Cupertino
Built-in design systems. `MaterialApp` for Android-style widgets, `CupertinoApp` for iOS-style. Mix within the same app using platform detection.
## Navigator 2.0
Declarative routing with `Router` and `RouteInformationParser`. Libraries like `go_router` simplify deep linking, nested navigation, and redirect guards.
## Animations
`AnimationController`, `Tween`, and `CurvedAnimation` for fine-grained control. Higher-level APIs include `AnimatedContainer`, `Hero`, and `AnimatedBuilder`.
## Platform Channels
Bidirectional communication between Dart and native Kotlin/Swift. `MethodChannel` for invoking native APIs, `EventChannel` for streaming data.
## Testing
- **Widget tests** — component-level UI verification
- **Unit tests** — business logic without UI
- **Integration tests** — full app flows via `flutter_driver` or `integration_test`
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!