Installation
Design Builder Flutter is a build runner tool that generates type-safe Flutter theme code from W3C Design Tokens.
Requirements
Section titled “Requirements”- Flutter SDK 3.0 or higher
- Dart SDK 3.0 or higher
Installing via pub.dev
Section titled “Installing via pub.dev”1. Add to pubspec.yaml
Section titled “1. Add to pubspec.yaml”Add design_builder to your dev_dependencies:
dependencies: flutter: sdk: flutter
dev_dependencies: build_runner: ^2.4.13 design_builder: ^1.0.12. Install dependencies
Section titled “2. Install dependencies”Run the following command to install the package:
dart pub getVerifying Installation
Section titled “Verifying Installation”After installation, verify that design_builder is available:
dart pub deps | grep design_builderYou should see output indicating the package is installed.
Next Steps
Section titled “Next Steps”Once installed, proceed to the Quick Start Guide to configure and use Design Builder in your project.