Complete Control
Components live in your codebase. Modify anything freely without package constraints.
Copy components directly into your project. No dependencies, complete control, infinite customization.
# Install CLI globally
dart pub global activate flutter_studio_cli
# Initialize your project
flutter_studio init
# Add components you need
flutter_studio add button card dialog# Add package dependency
flutter pub add flutter_studio
# Import and use
import 'package:flutter_studio/flutter_studio.dart';| Feature | CLI (Production) | Package (Prototype) |
|---|---|---|
| Code Ownership | Code lives in your project | External dependency |
| Customization | Modify anything freely | Limited to exposed props |
| Runtime Deps | Zero dependencies | Package adds to bundle |
| Dark Mode | Uses your Theme | Static colors |
| Version Control | Track component changes | Package version only |
| Bundle Size | Only what you use | Entire package |