mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

## Description This improves defaults generation with logging, stats, and token validation. This PR includes these changes: * introduce `TokenLogger`, with a verbose mode * prints versions and tokens usage to the console * outputs `generated/used_tokens.csv`, a list of all used tokens, for use by Google * find token files in `data` automatically * hide tokens `Map` * tokens can be obtained using existing resolvers (e.g. `color`, `shape`), or directly through `getToken`. * tokens can be checked for existence with `tokenAvailable` * remove version from template, since the tokens are aggregated and multiple versions are possible (as is the case currently), it does not make sense to attribute a single version * improve documentation ## Related Issues - Fixes https://github.com/flutter/flutter/issues/122602 ## Tests - Added tests for `TokenLogger` - Regenerated tokens, no-op except version removal ## Future work A future PR should replace or remove the following invalid tokens usages <img width="578" alt="image" src="https://github.com/flutter/flutter/assets/6655696/b6f9e5a7-523f-4f72-94f9-1b0bf4cc9f00">
109 lines
4.0 KiB
Dart
109 lines
4.0 KiB
Dart
// 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.
|
|
|
|
import 'template.dart';
|
|
|
|
class AppBarTemplate extends TokenTemplate {
|
|
const AppBarTemplate(super.blockName, super.fileName, super.tokens)
|
|
: super(
|
|
colorSchemePrefix: '_colors.',
|
|
textThemePrefix: '_textTheme.',
|
|
);
|
|
|
|
@override
|
|
String generate() => '''
|
|
class _${blockName}DefaultsM3 extends AppBarTheme {
|
|
_${blockName}DefaultsM3(this.context)
|
|
: super(
|
|
elevation: ${elevation('md.comp.top-app-bar.small.container')},
|
|
scrolledUnderElevation: ${elevation('md.comp.top-app-bar.small.on-scroll.container')},
|
|
titleSpacing: NavigationToolbar.kMiddleSpacing,
|
|
toolbarHeight: ${getToken('md.comp.top-app-bar.small.container.height')},
|
|
);
|
|
|
|
final BuildContext context;
|
|
late final ThemeData _theme = Theme.of(context);
|
|
late final ColorScheme _colors = _theme.colorScheme;
|
|
late final TextTheme _textTheme = _theme.textTheme;
|
|
|
|
@override
|
|
Color? get backgroundColor => ${componentColor('md.comp.top-app-bar.small.container')};
|
|
|
|
@override
|
|
Color? get foregroundColor => ${color('md.comp.top-app-bar.small.headline.color')};
|
|
|
|
@override
|
|
Color? get shadowColor => ${colorOrTransparent('md.comp.top-app-bar.small.container.shadow-color')};
|
|
|
|
@override
|
|
Color? get surfaceTintColor => ${colorOrTransparent('md.comp.top-app-bar.small.container.surface-tint-layer.color')};
|
|
|
|
@override
|
|
IconThemeData? get iconTheme => IconThemeData(
|
|
color: ${componentColor('md.comp.top-app-bar.small.leading-icon')},
|
|
size: ${getToken('md.comp.top-app-bar.small.leading-icon.size')},
|
|
);
|
|
|
|
@override
|
|
IconThemeData? get actionsIconTheme => IconThemeData(
|
|
color: ${componentColor('md.comp.top-app-bar.small.trailing-icon')},
|
|
size: ${getToken('md.comp.top-app-bar.small.trailing-icon.size')},
|
|
);
|
|
|
|
@override
|
|
TextStyle? get toolbarTextStyle => _textTheme.bodyMedium;
|
|
|
|
@override
|
|
TextStyle? get titleTextStyle => ${textStyle('md.comp.top-app-bar.small.headline')};
|
|
}
|
|
|
|
// Variant configuration
|
|
class _MediumScrollUnderFlexibleConfig with _ScrollUnderFlexibleConfig {
|
|
_MediumScrollUnderFlexibleConfig(this.context);
|
|
|
|
final BuildContext context;
|
|
late final ThemeData _theme = Theme.of(context);
|
|
late final ColorScheme _colors = _theme.colorScheme;
|
|
late final TextTheme _textTheme = _theme.textTheme;
|
|
|
|
static const double collapsedHeight = ${getToken('md.comp.top-app-bar.small.container.height')};
|
|
static const double expandedHeight = ${getToken('md.comp.top-app-bar.medium.container.height')};
|
|
|
|
@override
|
|
TextStyle? get collapsedTextStyle =>
|
|
${textStyle('md.comp.top-app-bar.small.headline')}?.apply(color: ${color('md.comp.top-app-bar.small.headline.color')});
|
|
|
|
@override
|
|
TextStyle? get expandedTextStyle =>
|
|
${textStyle('md.comp.top-app-bar.medium.headline')}?.apply(color: ${color('md.comp.top-app-bar.medium.headline.color')});
|
|
|
|
@override
|
|
EdgeInsetsGeometry get expandedTitlePadding => const EdgeInsets.fromLTRB(16, 0, 16, 20);
|
|
}
|
|
|
|
class _LargeScrollUnderFlexibleConfig with _ScrollUnderFlexibleConfig {
|
|
_LargeScrollUnderFlexibleConfig(this.context);
|
|
|
|
final BuildContext context;
|
|
late final ThemeData _theme = Theme.of(context);
|
|
late final ColorScheme _colors = _theme.colorScheme;
|
|
late final TextTheme _textTheme = _theme.textTheme;
|
|
|
|
static const double collapsedHeight = ${getToken('md.comp.top-app-bar.small.container.height')};
|
|
static const double expandedHeight = ${getToken('md.comp.top-app-bar.large.container.height')};
|
|
|
|
@override
|
|
TextStyle? get collapsedTextStyle =>
|
|
${textStyle('md.comp.top-app-bar.small.headline')}?.apply(color: ${color('md.comp.top-app-bar.small.headline.color')});
|
|
|
|
@override
|
|
TextStyle? get expandedTextStyle =>
|
|
${textStyle('md.comp.top-app-bar.large.headline')}?.apply(color: ${color('md.comp.top-app-bar.large.headline.color')});
|
|
|
|
@override
|
|
EdgeInsetsGeometry get expandedTitlePadding => const EdgeInsets.fromLTRB(16, 0, 16, 28);
|
|
}
|
|
''';
|
|
}
|