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 bricolage_ui_cli
# Initialize your project
bricolage_ui init
# Add components you need
bricolage_ui add button card dialog
# Or add all 40+ components at once
bricolage_ui add-all# Add package dependency
flutter pub add bricolage_ui
# Import and use
import 'package:bricolage_ui/bricolage_ui.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 |
| Version Control | Track component changes | Package version only |
| Bundle Size | Only what you use | Entire package |