1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 13:58:47 +00:00

Account for linter changes in linter_tool (#1930)

This commit is contained in:
Parker Lougheed
2023-07-01 00:41:32 -05:00
committed by GitHub
parent 3df2a9767b
commit f9e1a99d1a
8 changed files with 242 additions and 87 deletions

View File

@@ -79,11 +79,11 @@ class _LintExpansionTileState extends State<LintExpansionTile> {
TextSpan(
children: [
TextSpan(
text: 'Maturity:',
text: 'State:',
style: textTheme.titleSmall,
),
TextSpan(
text: ' ${rule.maturity}',
text: ' ${rule.state}',
),
],
),

View File

@@ -101,11 +101,11 @@ class _SavedRuleTileState extends State<SavedRuleTile> {
TextSpan(
children: [
TextSpan(
text: 'Maturity:',
text: 'State:',
style: textTheme.titleSmall,
),
TextSpan(
text: ' ${rule.maturity}',
text: ' ${rule.state}',
),
],
),