Skip to content

Installation

Design Builder Flutter is a build runner tool that generates type-safe Flutter theme code from W3C Design Tokens.

  • Flutter SDK 3.0 or higher
  • Dart SDK 3.0 or higher

Add design_builder to your dev_dependencies:

dependencies:
flutter:
sdk: flutter
dev_dependencies:
build_runner: ^2.4.13
design_builder: ^1.0.1

Run the following command to install the package:

Terminal window
dart pub get

After installation, verify that design_builder is available:

Terminal window
dart pub deps | grep design_builder

You should see output indicating the package is installed.

Once installed, proceed to the Quick Start Guide to configure and use Design Builder in your project.