forked from flutter/plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[reland] Add Material 3 support for
ListTile
- Part 1 (#116963)
* [reland] Add Material 3 support for `ListTile` - Part 1 * Update doc
- Loading branch information
1 parent
c63d797
commit 57fb36e
Showing
6 changed files
with
739 additions
and
230 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// 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); | ||
|
||
@override | ||
String generate() => ''' | ||
class _${blockName}DefaultsM3 extends ListTileThemeData { | ||
const _${blockName}DefaultsM3(this.context) | ||
: super(shape: ${shape("md.comp.list.list-item.container")}); | ||
final BuildContext context; | ||
@override | ||
Color? get tileColor => ${componentColor("md.comp.list.list-item.container")}; | ||
@override | ||
TextStyle? get titleTextStyle => ${textStyle("md.comp.list.list-item.label-text")}; | ||
@override | ||
TextStyle? get subtitleTextStyle => ${textStyle("md.comp.list.list-item.supporting-text")}; | ||
@override | ||
TextStyle? get leadingAndTrailingTextStyle => ${textStyle("md.comp.list.list-item.trailing-supporting-text")}; | ||
@override | ||
Color? get selectedColor => ${componentColor('md.comp.list.list-item.selected.trailing-icon')}; | ||
@override | ||
Color? get iconColor => ${componentColor('md.comp.list.list-item.unselected.trailing-icon')}; | ||
} | ||
'''; | ||
} |
Oops, something went wrong.