style: apply dart formatting fixes across lib/ and test/
CI / Lint (pull_request) Successful in 19m19s
CI / Test (pull_request) Failing after 19m19s
CI / Build Android (pull_request) Skipped
CI / Build iOS (pull_request) Skipped

11 files had formatting inconsistencies that caused the
--set-exit-if-changed gate to fail. Automated formatting
via dart format now passes cleanly.
This commit is contained in:
robot
2026-08-01 11:06:17 +00:00
parent 0e131e1db2
commit 0257937859
11 changed files with 123 additions and 90 deletions
+2 -7
View File
@@ -39,9 +39,7 @@ class ShowCard extends StatelessWidget {
'$label: ${show?.name ?? 'No scheduled show'}',
maxLines: 1,
overflow: TextOverflow.ellipsis,
style: Theme.of(
context,
).textTheme.bodyMedium?.copyWith(
style: Theme.of(context).textTheme.bodyMedium?.copyWith(
fontWeight: FontWeight.w600,
color: titleColor,
),
@@ -49,10 +47,7 @@ class ShowCard extends StatelessWidget {
),
const SizedBox(width: 8),
Text(
formatStartingTime(
show?.starts,
sourceTimezone: sourceTimezone,
),
formatStartingTime(show?.starts, sourceTimezone: sourceTimezone),
style: Theme.of(
context,
).textTheme.labelSmall?.copyWith(color: titleColor),