list_tile_template.dart 1.73 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
// 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 ListTileTemplate extends TokenTemplate {
  const ListTileTemplate(super.blockName, super.fileName, super.tokens, {
    super.colorSchemePrefix = '_colors.',
    super.textThemePrefix = '_textTheme.',
  });

13 14
  static const String tokenGroup = 'md.comp.list.list-item';

15 16 17 18 19 20 21 22
  @override
  String generate() => '''
class _${blockName}DefaultsM3 extends ListTileThemeData {
  _${blockName}DefaultsM3(this.context)
    : super(
        contentPadding: const EdgeInsetsDirectional.only(start: 16.0, end: 24.0),
        minLeadingWidth: 24,
        minVerticalPadding: 8,
23
        shape: ${shape("$tokenGroup.container")},
24 25 26 27 28 29 30 31 32 33 34
      );

  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 tileColor =>  Colors.transparent;

  @override
35
  TextStyle? get titleTextStyle => ${textStyle("$tokenGroup.label-text")}!.copyWith(color: ${componentColor('$tokenGroup.label-text')});
36 37

  @override
38
  TextStyle? get subtitleTextStyle => ${textStyle("$tokenGroup.supporting-text")}!.copyWith(color: ${componentColor('$tokenGroup.supporting-text')});
39 40

  @override
41
  TextStyle? get leadingAndTrailingTextStyle => ${textStyle("$tokenGroup.trailing-supporting-text")}!.copyWith(color: ${componentColor('$tokenGroup.trailing-supporting-text')});
42 43

  @override
44
  Color? get selectedColor => ${componentColor('$tokenGroup.selected.trailing-icon')};
45 46

  @override
47
  Color? get iconColor => ${componentColor('$tokenGroup.trailing-icon')};
48 49 50
}
''';
}