flutter/dev/tools/gen_defaults
Qun Cheng 66a84d1fed
Migrate IconButton to Material 3 - Part 1 (#105176)
* Added standard IconButton for M3 with new ButtonStyle field

* Added IconButton examples for standard, filled, filled_tonal, and outlined types

Co-authored-by: Qun Cheng <quncheng@google.com>
2022-06-07 12:39:22 -07:00
..
bin Migrate IconButton to Material 3 - Part 1 (#105176) 2022-06-07 12:39:22 -07:00
data Updated tokens to v0.98. (#103360) 2022-05-09 23:15:44 -07:00
lib Migrate IconButton to Material 3 - Part 1 (#105176) 2022-06-07 12:39:22 -07:00
test Prepare dev (minus flutter_gallery) for use_super_parameters (#100516) 2022-03-29 12:52:42 -07:00
pubspec.yaml Update packages with update-packages (#105325) 2022-06-06 10:49:39 -07:00
README.md Script to generate widget theme data defaults from the Material token database. (#95370) 2022-01-06 11:15:20 -08:00

Token Defaults Generator

Script that generates widget component theme data defaults based on the Material Token database. These tokens were extracted into a JSON file from an internal Google database.

Usage

Run this program from the root of the git repository:

dart dev/tools/gen_defaults/bin/gen_defaults.dart

Templates

There is a template file for every component that needs defaults from the token database. These templates are implemented as subclasses of TokenTemplate. This base class provides some utilities and a structure for adding a new chunk of generated code to the bottom of a given file.

Templates need to override the generate method to provide the generated code chunk as a string. The tokens are represented as a Map<String, dynamic> that is loaded from data/material-tokens.json. Templates can look up whatever properties are needed in this structure to provide the properties needed for the component.

See lib/fab_template.dart for an example that generates defaults for the Floating Action Button.