// Copyright 2014 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Generate component theme data defaults based on the Material // Design Token database. These tokens were extracted into a // JSON file from the internal Google database. // // ## Usage // // Run this program from the root of the git repository. // // ``` // dart dev/tools/gen_defaults/bin/gen_defaults.dart // ``` import 'dart:convert'; import 'dart:io'; import 'package:gen_defaults/dialog_template.dart'; import 'package:gen_defaults/fab_template.dart'; import 'package:gen_defaults/navigation_bar_template.dart'; import 'package:gen_defaults/navigation_rail_template.dart'; import 'package:gen_defaults/surface_tint.dart'; import 'package:gen_defaults/typography_template.dart'; Map _readTokenFile(String fileName) { return jsonDecode(File('dev/tools/gen_defaults/data/$fileName').readAsStringSync()) as Map; } Future main(List args) async { const String materialLib = 'packages/flutter/lib/src/material'; const List tokenFiles = [ 'assist_chip.json', 'banner.json', 'color_dark.json', 'color_light.json', 'dialog.json', 'elevation.json', 'elevated_card.json', 'fab_extended_primary.json', 'fab_large_primary.json', 'fab_primary.json', 'fab_small_primary.json', 'filled_card.json', 'filter_chip.json', 'input_chip.json', 'motion.json', 'navigation_bar.json', 'navigation_rail.json', 'outlined_card.json', 'palette.json', 'shape.json', 'slider.json', 'state.json', 'suggestion_chip.json', 'text_style.json', 'top_app_bar_large.json', 'top_app_bar_medium.json', 'top_app_bar_small.json', 'typeface.json', ]; // Generate a map with all the tokens to simplify the template interface. final Map tokens = {}; for (final String tokenFile in tokenFiles) { tokens.addAll(_readTokenFile(tokenFile)); } // Special case the light and dark color schemes. tokens['colorsLight'] = _readTokenFile('color_light.json'); tokens['colorsDark'] = _readTokenFile('color_dark.json'); DialogTemplate('$materialLib/dialog.dart', tokens).updateFile(); FABTemplate('$materialLib/floating_action_button.dart', tokens).updateFile(); NavigationBarTemplate('$materialLib/navigation_bar.dart', tokens).updateFile(); NavigationRailTemplate('$materialLib/navigation_rail.dart', tokens).updateFile(); SurfaceTintTemplate('$materialLib/elevation_overlay.dart', tokens).updateFile(); TypographyTemplate('$materialLib/typography.dart', tokens).updateFile(); }